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.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 |
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.
|