Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.memoire.dja
Class DjaGridEvent  view DjaGridEvent download DjaGridEvent.java

java.lang.Object
  extended byjava.util.EventObject
      extended bycom.memoire.dja.DjaGridEvent
All Implemented Interfaces:
java.io.Serializable

public class DjaGridEvent
extends java.util.EventObject


Field Summary
static int ADDED
           
static int CONNECTED
           
static int DISCONNECTED
           
private  int id_
           
static int MODIFIED
           
private  DjaOwner object_
           
static int REMOVED
           
static int SELECTED
           
static int UNSELECTED
           
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
DjaGridEvent(DjaGrid _grid, DjaOwner _object, int _id)
           
 
Method Summary
 DjaGrid getGrid()
           
 int getID()
           
 DjaOwner getObject()
           
 java.lang.String toString()
          Converts the event to a String.
 
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

ADDED

public static final int ADDED
See Also:
Constant Field Values

REMOVED

public static final int REMOVED
See Also:
Constant Field Values

CONNECTED

public static final int CONNECTED
See Also:
Constant Field Values

DISCONNECTED

public static final int DISCONNECTED
See Also:
Constant Field Values

SELECTED

public static final int SELECTED
See Also:
Constant Field Values

UNSELECTED

public static final int UNSELECTED
See Also:
Constant Field Values

MODIFIED

public static final int MODIFIED
See Also:
Constant Field Values

id_

private int id_

object_

private DjaOwner object_
Constructor Detail

DjaGridEvent

public DjaGridEvent(DjaGrid _grid,
                    DjaOwner _object,
                    int _id)
Method Detail

getGrid

public DjaGrid getGrid()

getID

public int getID()

getObject

public DjaOwner getObject()

toString

public java.lang.String toString()
Description copied from class: java.util.EventObject
Converts the event to a String. The format is not specified, but by observation, the JDK uses: getClass().getName() + "[source=" + source + "]";.