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

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
LwSpin, LwTextRender, LwColorPanel, LwFontPanel

public interface TextListener
extends java.util.EventListener

This is listener interface for receiving text events.


Method Summary
 void textInserted(TextEvent e)
          Invoked when a new text has been inserted in the text.
 void textRemoved(TextEvent e)
          Invoked when a part of the text has been removed.
 void textUpdated(TextEvent e)
          Invoked when the text has been updated.
 

Method Detail

textRemoved

public void textRemoved(TextEvent e)
Invoked when a part of the text has been removed.
Parameters:
e - the text event.

textInserted

public void textInserted(TextEvent e)
Invoked when a new text has been inserted in the text.
Parameters:
e - the text event.

textUpdated

public void textUpdated(TextEvent e)
Invoked when the text has been updated.
Parameters:
e - the text event.


: up