: 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 LwFocusListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
LwCompList, LwNotebook, LwTextField

public interface LwFocusListener
extends java.util.EventListener

This listener interface for receiving light weight focus events.


Method Summary
 void focusGained(LwVCLEvent e)
          Invoked when the light weight component gained focus.
 void focusLost(LwVCLEvent e)
          Invoked when the light weight component lost focus.
 

Method Detail

focusGained

public void focusGained(LwVCLEvent e)
Invoked when the light weight component gained focus.
Parameters:
e - the specified focus event.

focusLost

public void focusLost(LwVCLEvent e)
Invoked when the light weight component lost focus.
Parameters:
e - the specified focus event.


: up