This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


javax.accessibility
interface AccessibleTableModelChange

All Known Implementing Classes:
JTable.AccessibleJTable.AccessibleJTableModelChange

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:

The model change type returned by getType() will be one of: The affected area of the table can be determined by the other four methods which specify ranges of rows and columns


Field Summary
static int DELETE
          Identifies the deletion of rows and/or columns.
static int INSERT
          Identifies the insertion of new rows and/or columns.
static int UPDATE
          Identifies a change to existing data.
 
Method Summary
 int

          Returns the first column that changed.
 int

          Returns the first row that changed.
 int

          Returns the last column that changed.
 int

          Returns the last row that changed.
 int

          Returns the type of event
 

Field Detail

DELETE

public static final int DELETE
Identifies the deletion of rows and/or columns.

INSERT

public static final int INSERT
Identifies the insertion of new rows and/or columns.

UPDATE

public static final int UPDATE
Identifies a change to existing data.
Method Detail

getFirstColumn

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


getFirstRow

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


getLastColumn

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


getLastRow

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


getType

public int getType()
Returns the type of event



This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.