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

All Known Implementing Classes:
LwTracker

public interface TooltipInfo

This is tool tip interface. Using the interface different classes can define tool tip or set of tool tips for the specified component area.


Method Summary
 LwComponent getTooltip(LwComponent target, int x, int y)
          Returns the component that should be used as a tool tip for the specified location of the target component.
 

Method Detail

getTooltip

public LwComponent getTooltip(LwComponent target,
                              int x,
                              int y)
Returns the component that should be used as a tool tip for the specified location of the target component.
Parameters:
target - the target component.
x - the x coordinate of the location.
y - the y coordinate of the location.
Returns:
a tool tip component.


: up