javax.accessibility

Interface AccessibleTableModelChange

public interface AccessibleTableModelChange

Describes a change to an accessible table. Accessibility software can use the implementations of this interface to update their state after a change to a table.

Since: 1.2

See Also: Accessible AccessibleContext getAccessibleTable AccessibleTable

UNKNOWN: updated to 1.4

Field Summary
intDELETE
Identifies deletion of rows or columns.
intINSERT
Identifies insertion of rows or columns.
intUPDATE
Identifies change to existing data.
Method Summary
intgetFirstColumn()
Returns the first column that changed.
intgetFirstRow()
Returns the first row that changed.
intgetLastColumn()
Returns the last column that changed.
intgetLastRow()
Returns the last row that changed.
intgetType()
Returns the change type.

Field Detail

DELETE

public int DELETE
Identifies deletion of rows or columns.

INSERT

public int INSERT
Identifies insertion of rows or columns.

UPDATE

public int UPDATE
Identifies change to existing data.

Method Detail

getFirstColumn

public int getFirstColumn()
Returns the first column that changed.

Returns: the 0-based index of the first column to change

getFirstRow

public int getFirstRow()
Returns the first row that changed.

Returns: the 0-based index of the first row to change

getLastColumn

public int getLastColumn()
Returns the last column that changed.

Returns: the 0-based index of the last column to change

getLastRow

public int getLastRow()
Returns the last row that changed.

Returns: the 0-based index of the last row to change

getType

public int getType()
Returns the change type.

Returns: the type

See Also: INSERT UPDATE DELETE