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 SummaryFields Modifier and Type Field Description protected intfirstColumnThe first columnprotected intfirstRowThe first rowprotected intlastColumnThe last columnprotected intlastRowThe last rowprotected inttypeThe type
- 
Constructor SummaryConstructors Modifier Constructor Description protectedAccessibleJTableModelChange(int type, int firstRow, int lastRow, int firstColumn, int lastColumn)Constructs anAccessibleJTableModelChange.
- 
Method SummaryModifier and Type Method Description intgetFirstColumn()Returns the first column.intgetFirstRow()Returns the first row.intgetLastColumn()Returns the last column.intgetLastRow()Returns 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:
- AccessibleTableModelChange.INSERT,- AccessibleTableModelChange.UPDATE,- AccessibleTableModelChange.DELETE
 
- 
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
 
 
-