: 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.event
Interface LwTrackerListener

All Superinterfaces:
java.util.EventListener

public interface LwTrackerListener
extends java.util.EventListener

This listener interface for receiving tracker events.


Method Summary
 void bundleAdded(LwTrackerEvent e)
          Invoked when the new tracker bundle has been added.
 void bundleRemoved(LwTrackerEvent e)
          Invoked when the tracker bundle has been removed.
 void valueChanged(LwTrackerEvent e)
          Invoked when the tracker bundle value is changed.
 void valueChangedDone(LwTrackerEvent e)
          Invoked when the tracker bundle value changing is done.
 void valueInfo(LwTrackerEvent e)
          Invoked when the tracker informs the listener with the bundle value.
 

Method Detail

valueChanged

public void valueChanged(LwTrackerEvent e)
Invoked when the tracker bundle value is changed.
Parameters:
e - the specified tracker event.

valueChangedDone

public void valueChangedDone(LwTrackerEvent e)
Invoked when the tracker bundle value changing is done.
Parameters:
e - the specified tracker event.

valueInfo

public void valueInfo(LwTrackerEvent e)
Invoked when the tracker informs the listener with the bundle value.
Parameters:
e - the specified tracker event.

bundleAdded

public void bundleAdded(LwTrackerEvent e)
Invoked when the new tracker bundle has been added.
Parameters:
e - the specified tracker event.

bundleRemoved

public void bundleRemoved(LwTrackerEvent e)
Invoked when the tracker bundle has been removed.
Parameters:
e - the specified tracker event.


: up