Searched defs:ALL_COLUMNS (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DTableModelEvent.java45 * TableModelEvent(source, 3, 6, ALL_COLUMNS, INSERT); // Rows (3, 6) were inserted
46 * TableModelEvent(source, 3, 6, ALL_COLUMNS, DELETE); // Rows (3, 6) were deleted
81 public static final int ALL_COLUMNS = -1; field in class:TableModelEvent
107 this(source, 0, Integer.MAX_VALUE, ALL_COLUMNS, UPDATE);
121 this(source, row, row, ALL_COLUMNS, UPDATE);
128 this(source, firstRow, lastRow, ALL_COLUMNS, UPDATE);
142 * co-ordinate system. When <I>column</I> is ALL_COLUMNS, all cells in the
169 * value is ALL_COLUMNS; it means every column in the specified

Completed in 39 milliseconds