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
FieldsModifier and TypeFieldDescriptionprotected intThe first columnprotected intThe first rowprotected intThe last columnprotected intThe last rowprotected intThe typeFields declared in interface AccessibleTableModelChange
DELETE, INSERT, UPDATE -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedAccessibleJTableModelChange(int type, int firstRow, int lastRow, int firstColumn, int lastColumn) Constructs anAccessibleJTableModelChange. -
Method Summary
Modifier and TypeMethodDescriptionintReturns the first column.intReturns the first row.intReturns the last column.intReturns the last row.intgetType()Returns the type.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()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<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(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 voidwait(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 typeThe type -
firstRow
protected int firstRowThe first row -
lastRow
protected int lastRowThe last row -
firstColumn
protected int firstColumnThe first column -
lastColumn
protected int lastColumnThe last column
-
-
Constructor Details
-
AccessibleJTableModelChange
protected AccessibleJTableModelChange(int type, int firstRow, int lastRow, int firstColumn, int lastColumn) Constructs anAccessibleJTableModelChange.- Parameters:
type- the typefirstRow- the first rowlastRow- the last rowfirstColumn- the first columnlastColumn- the last column
-
-
Method Details
-
getType
public int getType()Returns the type.- Specified by:
getTypein interfaceAccessibleTableModelChange- Returns:
- the type
- See Also:
-
getFirstRow
public int getFirstRow()Returns the first row.- Specified by:
getFirstRowin interfaceAccessibleTableModelChange- Returns:
- the first row
-
getLastRow
public int getLastRow()Returns the last row.- Specified by:
getLastRowin interfaceAccessibleTableModelChange- Returns:
- the last row
-
getFirstColumn
public int getFirstColumn()Returns the first column.- Specified by:
getFirstColumnin interfaceAccessibleTableModelChange- Returns:
- the first column
-
getLastColumn
public int getLastColumn()Returns the last column.- Specified by:
getLastColumnin interfaceAccessibleTableModelChange- Returns:
- the last column
-