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

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
LwAList, LwTextField, LwPopupLayer, LwScrollPan, LwScroll, LwGrid

public interface PosListener
extends java.util.EventListener

This is listener interface for receiving pos events.


Method Summary
 void posChanged(java.lang.Object target, int prevOffset, int prevLine, int prevColumn)
          Invoked when a virtual position has been changed.
 

Method Detail

posChanged

public void posChanged(java.lang.Object target,
                       int prevOffset,
                       int prevLine,
                       int prevColumn)
Invoked when a virtual position has been changed.
Parameters:
target - the specified pos controller.
prevOffset - the previous offset.
prevLine - the previous line.
prevColumn - the previous column.


: up