: Download: FAQ: Licensing: Support: Contact ME
LwVCL Home
Introduction
Overview
Screen Shots
On-line Demos
Requirements
Further Plans
Docs
Tutorial
How-to (PDF)
API
FAQ
Download
Latest version

Home > J2SE > API

Overview  Package   Class  Tree  Deprecated  Index  Help 

org.zaval.lw.gdp.event
Class DgnControllerEvent

java.lang.Object
  |
  +--java.util.EventObject
        |
        +--org.zaval.lw.gdp.event.DgnControllerEvent
All Implemented Interfaces:
java.io.Serializable

public class DgnControllerEvent
extends java.util.EventObject

This class represents designer controller event.

See Also:
Serialized Form

Field Summary
static int DGN_FINISHED
          The designer controller deactivation event type.
static int DGN_STARTED
          The designer controller activation event type.
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
DgnControllerEvent(LwComponent src, int id)
          Constructs the event object with the specified source component, and the event id.
 
Method Summary
 int getID()
           
 
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

DGN_STARTED

public static final int DGN_STARTED
The designer controller activation event type.

DGN_FINISHED

public static final int DGN_FINISHED
The designer controller deactivation event type.
Constructor Detail

DgnControllerEvent

public DgnControllerEvent(LwComponent src,
                          int id)
Constructs the event object with the specified source component, and the event id.
Parameters:
src - the component where the event originated.
id - the specified event id.
Method Detail

getID

public int getID()


: up