public interface AccessibleTableModelChange
The AccessibleTableModelChange interface describes a change to the table model. The attributes of the model change can be obtained by the following methods:
Accessible
, Accessible.getAccessibleContext()
, AccessibleContext
, AccessibleContext.getAccessibleTable()
static final int INSERT
Identifies the insertion of new rows and/or columns.
static final int UPDATE
Identifies a change to existing data.
static final int DELETE
Identifies the deletion of rows and/or columns.
int getType()
Returns the type of event.
int getFirstRow()
Returns the first row that changed.
int getLastRow()
Returns the last row that changed.
int getFirstColumn()
Returns the first column that changed.
int getLastColumn()
Returns the last column that changed.
© 1993–2017, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.