QJCC homepage

biz.chitec.quarterback.swing
Class TableRowHeightEvent

java.lang.Object
  extended byjava.util.EventObject
      extended bybiz.chitec.quarterback.swing.TableRowHeightEvent
All Implemented Interfaces:
java.io.Serializable

public class TableRowHeightEvent
extends java.util.EventObject

Event for spreading row height information within JTable.

Version:
$Id: a4890daa635b0854e50de624a0e94b715ad5adc0 $
Author:
cantamen/Dirk Hillbrecht 2005
See Also:
Serialized Form

Field Summary
private  int columnIndex
           
static int DROP_CACHE
           
private  int newValue
           
private  int oldValue
           
static int PREFERRED_ROW_HEIGHT
           
static int ROW_HEIGHT
           
private  int rowIndex
           
private  int type
           
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
TableRowHeightEvent(java.lang.Object sourcex, int typex, int columnindexx, int rowindexx, int oldvaluex, int newvaluex)
           
 
Method Summary
 int getColumnIndex()
           
 int getNewValue()
           
 int getOldValue()
           
 int getRowIndex()
           
 int getType()
           
 java.lang.String toString()
           
 
Methods inherited from class java.util.EventObject
getSource
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

PREFERRED_ROW_HEIGHT

public static final int PREFERRED_ROW_HEIGHT
See Also:
Constant Field Values

ROW_HEIGHT

public static final int ROW_HEIGHT
See Also:
Constant Field Values

DROP_CACHE

public static final int DROP_CACHE
See Also:
Constant Field Values

type

private int type

columnIndex

private int columnIndex

rowIndex

private int rowIndex

oldValue

private int oldValue

newValue

private int newValue
Constructor Detail

TableRowHeightEvent

public TableRowHeightEvent(java.lang.Object sourcex,
                           int typex,
                           int columnindexx,
                           int rowindexx,
                           int oldvaluex,
                           int newvaluex)
Method Detail

getType

public int getType()

getColumnIndex

public int getColumnIndex()

getRowIndex

public int getRowIndex()

getOldValue

public int getOldValue()

getNewValue

public int getNewValue()

toString

public java.lang.String toString()

QJCC homepage