JClass DesktopViews 6.3.0 API
Documentation

com.klg.jclass.table
Class JCCellDisplayEvent

java.lang.Object
  |
  +--java.util.EventObject
        |
        +--com.klg.jclass.table.JCCellDisplayEvent
All Implemented Interfaces:
Serializable

public class JCCellDisplayEvent
extends EventObject

The event posted when a cell value is requested for display.

See Also:
JCCellDisplayListener, Serialized Form

Field Summary
protected  Object cell_data
           
protected  int column
           
protected  Object display_data
           
protected  int row
           
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
JCCellDisplayEvent(Object source, int row, int column, Object value)
           
 
Method Summary
 Object getCellData()
          Retrieves the object being displayed.
 int getColumn()
          Retrieves the column of the cell or label.
 Object getDisplayData()
          Retrieves the object that will be displayed.
 int getRow()
          Retrieves the row of the cell or label.
 void setDisplayData(Object value)
          Sets the object to be displayed.
 String toString()
          Returns a String representation of the event.
 
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

row

protected int row

column

protected int column

cell_data

protected Object cell_data

display_data

protected Object display_data
Constructor Detail

JCCellDisplayEvent

public JCCellDisplayEvent(Object source,
                          int row,
                          int column,
                          Object value)
Method Detail

getRow

public int getRow()
Retrieves the row of the cell or label.

Returns:
row of the cell or label

getColumn

public int getColumn()
Retrieves the column of the cell or label.

Returns:
column of the cell or label

getCellData

public Object getCellData()
Retrieves the object being displayed.

Returns:
object being displayed

setDisplayData

public void setDisplayData(Object value)
Sets the object to be displayed.

Parameters:
value -

getDisplayData

public Object getDisplayData()
Retrieves the object that will be displayed.

Returns:
object that will be displayed

toString

public String toString()
Returns a String representation of the event.

Overrides:
toString in class EventObject
Returns:
String representation of the event

Copyright © 2004 Quest Software Inc..
All rights reserved.