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 Summary

    Fields
    Modifier and Type
    Field
    Description
    protected int
    The first column
    protected int
    The first row
    protected int
    The last column
    protected int
    The last row
    protected int
    The type

    Fields declared in interface AccessibleTableModelChange

    DELETE, INSERT, UPDATE
    Modifier and Type
    Field
    Description
    static final int
    Identifies the deletion of rows and/or columns.
    static final int
    Identifies the insertion of new rows and/or columns.
    static final int
    Identifies a change to existing data.
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    protected
    AccessibleJTableModelChange(int type, int firstRow, int lastRow, int firstColumn, int lastColumn)
    Constructs an AccessibleJTableModelChange.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns the first column.
    int
    Returns the first row.
    int
    Returns the last column.
    int
    Returns the last row.
    int
    Returns the type.

    Methods declared in class Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    Modifier and Type
    Method
    Description
    protected Object
    Creates and returns a copy of this object.
    boolean
    Indicates whether some other object is "equal to" this one.
    protected void
    Deprecated, for removal: This API element is subject to removal in a future version.
    Finalization is deprecated and subject to removal in a future release.
    final Class<?>
    Returns the runtime class of this Object.
    int
    Returns a hash code value for this object.
    final void
    Wakes up a single thread that is waiting on this object's monitor.
    final void
    Wakes up all threads that are waiting on this object's monitor.
    Returns a string representation of the object.
    final void
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted.
    final void
    wait(long timeoutMillis)
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
    final void
    wait(long timeoutMillis, int nanos)
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
  • Field Details

    • type

      protected int type
      The type
    • firstRow

      protected int firstRow
      The first row
    • lastRow

      protected int lastRow
      The last row
    • firstColumn

      protected int firstColumn
      The first column
    • lastColumn

      protected int lastColumn
      The last column
  • Constructor Details

    • AccessibleJTableModelChange

      protected AccessibleJTableModelChange(int type, int firstRow, int lastRow, int firstColumn, int lastColumn)
      Constructs an AccessibleJTableModelChange.
      Parameters:
      type - the type
      firstRow - the first row
      lastRow - the last row
      firstColumn - the first column
      lastColumn - the last column
  • Method Details