java.lang.Object
javax.swing.JTable.AccessibleJTable.AccessibleJTableModelChange
- All Implemented Interfaces:
AccessibleTableModelChange
- Enclosing class:
JTable.AccessibleJTable
protected class JTable.AccessibleJTable.AccessibleJTableModelChange
extends Object
implements AccessibleTableModelChange
Describes a change in the accessible table model.
-
Field Summary
Fields修饰符和类Field描述protected int
The first columnprotected int
The first rowprotected int
The last columnprotected int
The last rowprotected int
The typeFields declared in interface javax.accessibility.AccessibleTableModelChange
DELETE, INSERT, UPDATE
-
Constructor Summary
ConstructorsModifierConstructor描述protected
AccessibleJTableModelChange
(int type, int firstRow, int lastRow, int firstColumn, int lastColumn) Constructs anAccessibleJTableModelChange
. -
Method Summary
修饰符和类方法描述int
Returns the first column.int
Returns the first row.int
Returns the last column.int
Returns the last row.int
getType()
Returns the type.
-
Field Details
-
type
protected int typeThe type -
firstRow
protected int firstRowThe first row -
lastRow
protected int lastRowThe last row -
firstColumn
protected int firstColumnThe first column -
lastColumn
protected int lastColumnThe last column
-
-
Constructor Details
-
AccessibleJTableModelChange
protected AccessibleJTableModelChange(int type, int firstRow, int lastRow, int firstColumn, int lastColumn) Constructs anAccessibleJTableModelChange
.- Parameters:
type
- the typefirstRow
- the first rowlastRow
- the last rowfirstColumn
- the first columnlastColumn
- the last column
-
-
Method Details
-
getType
public int getType()Returns the type.- Specified by:
getType
in interfaceAccessibleTableModelChange
- Returns:
- the type
- See Also:
-
getFirstRow
public int getFirstRow()Returns the first row.- Specified by:
getFirstRow
in interfaceAccessibleTableModelChange
- Returns:
- the first row
-
getLastRow
public int getLastRow()Returns the last row.- Specified by:
getLastRow
in interfaceAccessibleTableModelChange
- Returns:
- the last row
-
getFirstColumn
public int getFirstColumn()Returns the first column.- Specified by:
getFirstColumn
in interfaceAccessibleTableModelChange
- Returns:
- the first column
-
getLastColumn
public int getLastColumn()Returns the last column.- Specified by:
getLastColumn
in interfaceAccessibleTableModelChange
- Returns:
- the last column
-