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

All Superinterfaces:
Layoutable, LayoutContainer, LwComponent, LwContainer, Validationable
All Known Implementing Classes:
LwActContainer, LwCombo, LwCompList, LwSplitPan, LwWindow, LwScroll, LwTreeGrid

public interface LwComposite
extends LwContainer

This interface provides ability for a container to control child input events delivery. The input events are performed by mouse or keyboard. The interface has just one method that is invoked by LwEventManager manager to test if the input event for the given child component should be caught by the parent component.


Method Summary
 boolean catchInput(LwComponent child)
          Checks if the input event for the specified child component should be caught by the parent.
 
Methods inherited from interface org.zaval.lw.LwContainer
add, add, getLwLayout, indexOf, insert, isInvalidatedByChild, paintOnTop, remove, removeAll, setLwLayout
 
Methods inherited from interface org.zaval.lw.LwComponent
canHaveFocus, getBackground, getLwComponentAt, getLwParent, getOrigin, getViewMan, getVisiblePart, isEnabled, isOpaque, paint, repaint, repaint, repaint, setBackground, setEnabled, setInsets, setLwParent, setOpaque, setViewMan, setVisible, update
 
Methods inherited from interface org.zaval.lw.Layoutable
getBounds, getHeight, getInsets, getLocation, getPreferredSize, getSize, getWidth, getX, getY, isVisible, setLocation, setSize
 
Methods inherited from interface org.zaval.util.Validationable
invalidate, isValid, validate
 
Methods inherited from interface org.zaval.lw.LayoutContainer
count, get, getLayoutOffset
 

Method Detail

catchInput

public boolean catchInput(LwComponent child)
Checks if the input event for the specified child component should be caught by the parent.
Parameters:
child - the specified child component.
Returns:
true if input events for the child component should be caught by this component; false otherwise.


: up