swingwtx.swing.event
Class TableModelEvent

java.lang.Object
  extended byjava.util.EventObject
      extended byswingwtx.swing.event.TableModelEvent
All Implemented Interfaces:
java.io.Serializable

public class TableModelEvent
extends java.util.EventObject

See Also:
Serialized Form

Field Summary
static int ALL_COLUMNS
           
protected  int column
           
static int DELETE
           
protected  int firstRow
           
static int HEADER_ROW
           
static int INSERT
           
protected  int lastRow
           
protected  int type
           
static int UPDATE
           
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
TableModelEvent(TableModel source)
           
TableModelEvent(TableModel source, int row)
           
TableModelEvent(TableModel source, int firstRow, int lastRow)
           
TableModelEvent(TableModel source, int firstRow, int lastRow, int column)
           
TableModelEvent(TableModel source, int firstRow, int lastRow, int column, int type)
           
 
Method Summary
 int getColumn()
           
 int getFirstRow()
           
 int getLastRow()
           
 int getType()
           
 
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

INSERT

public static final int INSERT
See Also:
Constant Field Values

UPDATE

public static final int UPDATE
See Also:
Constant Field Values

DELETE

public static final int DELETE
See Also:
Constant Field Values

HEADER_ROW

public static final int HEADER_ROW
See Also:
Constant Field Values

ALL_COLUMNS

public static final int ALL_COLUMNS
See Also:
Constant Field Values

type

protected int type

firstRow

protected int firstRow

lastRow

protected int lastRow

column

protected int column
Constructor Detail

TableModelEvent

public TableModelEvent(TableModel source)

TableModelEvent

public TableModelEvent(TableModel source,
                       int row)

TableModelEvent

public TableModelEvent(TableModel source,
                       int firstRow,
                       int lastRow)

TableModelEvent

public TableModelEvent(TableModel source,
                       int firstRow,
                       int lastRow,
                       int column)

TableModelEvent

public TableModelEvent(TableModel source,
                       int firstRow,
                       int lastRow,
                       int column,
                       int type)
Method Detail

getFirstRow

public int getFirstRow()

getLastRow

public int getLastRow()

getColumn

public int getColumn()

getType

public int getType()