: 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
Interface DgnControllerListener

All Superinterfaces:
java.util.EventListener

public interface DgnControllerListener
extends java.util.EventListener

This is listener interface to receive designer events.


Method Summary
 void dgnFinished(DgnControllerEvent e)
          Invoked when the controller has been deactivated.
 void dgnStarted(DgnControllerEvent e)
          Invoked when the controller has been activated.
 

Method Detail

dgnStarted

public void dgnStarted(DgnControllerEvent e)
Invoked when the controller has been activated.
Parameters:
e - the specified designer event.

dgnFinished

public void dgnFinished(DgnControllerEvent e)
Invoked when the controller has been deactivated.
Parameters:
e - the specified designer event.


: up