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

Method newColumns

src/main/java/gate/swing/XJTable.java:82–88  ·  view source on GitHub ↗

Called when the columns have changed.

()

Source from the content-addressed store, hash-verified

80 * Called when the columns have changed.
81 */
82 protected void newColumns(){
83 columnData = new ArrayList<ColumnData>(dataModel.getColumnCount());
84 hiddenColumns = new ArrayList<TableColumn>();
85 for(int i = 0; i < dataModel.getColumnCount(); i++) {
86 columnData.add(new ColumnData(i));
87 }
88 }
89
90
91 @Override

Callers 2

setModelMethod · 0.95
tableChangedMethod · 0.80

Calls 2

getColumnCountMethod · 0.65
addMethod · 0.65

Tested by

no test coverage detected