Whole document tree
javax.swing.event
|
Field Summary | |
static int |
ALL_COLUMNS
Specifies all columns in a row or rows. |
protected int |
column
|
static int |
DELETE
Identifies the removal of rows or columns. |
protected int |
firstRow
|
static int |
HEADER_ROW
Identifies the header row. |
static int |
INSERT
Identifies the addtion of new rows or columns. |
protected int |
lastRow
|
protected int |
type
|
static int |
UPDATE
Identifies a change to existing data. |
Fields inherited from class java.util.EventObject |
source |
Constructor Summary | |
TableModelEvent(TableModel source)
All row data in the table has changed, listeners should discard any state that was based on the rows and requery the TableModel to get the new row count and all the appropriate values. |
|
TableModelEvent(TableModel source,
int row)
This row of data has been updated. |
|
TableModelEvent(TableModel source,
int firstRow,
int lastRow)
The data in rows [firstRow, lastRow] have been updated. |
|
TableModelEvent(TableModel source,
int firstRow,
int lastRow,
int column)
The cells in column column in the range [firstRow, lastRow] have been updated. |
|
TableModelEvent(TableModel source,
int firstRow,
int lastRow,
int column,
int type)
The cells from (firstRow, column) to (lastRow, column) have been changed. |
Method Summary | |
int |
getColumn()
Returns the column for the event. |
int |
getFirstRow()
Returns the first row that changed. |
int |
getLastRow()
Returns the last row that changed. |
int |
getType()
Returns the type of event - one of: INSERT, UPDATE and DELETE. |
Methods inherited from class java.util.EventObject |
getSource, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
public static final int INSERT
public static final int UPDATE
public static final int DELETE
public static final int HEADER_ROW
public static final int ALL_COLUMNS
protected int type
protected int firstRow
protected int lastRow
protected int column
Constructor Detail |
public TableModelEvent(TableModel source)
public TableModelEvent(TableModel source, int row)
HEADER_ROW
as the value for the row.
When the JTable recieves this event and its autoCreateColumnsFromModel
flag is set it discards any TableColumns that it had and reallocates
default ones in the order they appear in the model. This is the
same as calling setModel(TableModel)
on the JTable.public TableModelEvent(TableModel source, int firstRow, int lastRow)
public TableModelEvent(TableModel source, int firstRow, int lastRow, int column)
public TableModelEvent(TableModel source, int firstRow, int lastRow, int column, int type)
The type should be one of: INSERT, UPDATE and DELETE.
Method Detail |
public int getFirstRow()
public int getLastRow()
public int getColumn()
public int getType()
|
JavaTM 2 Platform Std. Ed. v1.3.1 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-2001 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A. All Rights Reserved.