MCPcopy Create free account
hub / github.com/GateNLP/gate-core / run

Method run

src/main/java/gate/gui/CorpusEditor.java:155–167  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

153 // select the moved/already existing documents
154 SwingUtilities.invokeLater(new Runnable() {
155 @Override
156 public void run() {
157 docTable.clearSelection();
158 for (String documentName : documentsNames) {
159 for (int row = 0; row < docTable.getRowCount(); row++) {
160 if (docTable.getValueAt(
161 row, docTable.convertColumnIndexToView(1))
162 .equals(documentName)) {
163 docTable.addRowSelectionInterval(row, row);
164 }
165 }
166 }
167 }
168 });
169 changeMessage();
170 return true;

Callers

nothing calls this directly

Calls 12

changeMessageMethod · 0.95
clearSelectionMethod · 0.80
fireTableDataChangedMethod · 0.80
getDocumentIndexMethod · 0.80
equalsMethod · 0.65
getValueAtMethod · 0.65
sizeMethod · 0.65
getDataStoreMethod · 0.65
getRowCountMethod · 0.45
setEnabledMethod · 0.45
setTextMethod · 0.45
setVisibleMethod · 0.45

Tested by

no test coverage detected