Class JTable.AccessibleJTable.AccessibleJTableModelChange
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.
- Since:
- 1.2
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprotected intThe first columnprotected intThe first rowprotected intThe last columnprotected intThe last rowprotected intThe typeFields declared in interface javax.accessibility.AccessibleTableModelChangeDELETE, INSERT, UPDATE
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedAccessibleJTableModelChange(int type, int firstRow, int lastRow, int firstColumn, int lastColumn) Constructs anAccessibleJTableModelChange.
- 
Method SummaryModifier and TypeMethodDescriptionintReturns the first column.intReturns the first row.intReturns the last column.intReturns the last row.intgetType()Returns the type.
- 
Field Details- 
typeprotected int typeThe type
- 
firstRowprotected int firstRowThe first row
- 
lastRowprotected int lastRowThe last row
- 
firstColumnprotected int firstColumnThe first column
- 
lastColumnprotected int lastColumnThe last column
 
- 
- 
Constructor Details- 
AccessibleJTableModelChangeprotected AccessibleJTableModelChange(int type, int firstRow, int lastRow, int firstColumn, int lastColumn) Constructs anAccessibleJTableModelChange.- Parameters:
- type- the type
- firstRow- the first row
- lastRow- the last row
- firstColumn- the first column
- lastColumn- the last column
 
 
- 
- 
Method Details- 
getTypepublic int getType()Returns the type.- Specified by:
- getTypein interface- AccessibleTableModelChange
- Returns:
- the type
- See Also:
 
- 
getFirstRowpublic int getFirstRow()Returns the first row.- Specified by:
- getFirstRowin interface- AccessibleTableModelChange
- Returns:
- the first row
 
- 
getLastRowpublic int getLastRow()Returns the last row.- Specified by:
- getLastRowin interface- AccessibleTableModelChange
- Returns:
- the last row
 
- 
getFirstColumnpublic int getFirstColumn()Returns the first column.- Specified by:
- getFirstColumnin interface- AccessibleTableModelChange
- Returns:
- the first column
 
- 
getLastColumnpublic int getLastColumn()Returns the last column.- Specified by:
- getLastColumnin interface- AccessibleTableModelChange
- Returns:
- the last column
 
 
-