| Modifier and Type | Class and Description |
|---|---|
class |
Composite
A composite is a widget that can contain other
Widget instances, following the composite pattern. |
class |
Device
A device represents the physical look of a device.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.List<Widget> |
Device.getWidgets()
Gets a list of device's widgets.
|
java.util.Iterator<Widget> |
Composite.iterator()
Gets an iterator over the composite children widgets in proper sequence.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Composite.add(Widget widget)
Adds the specified widget to the end of the list of children of this composite.
|
abstract void |
FrontPanel.repaintWidget(Widget w)
Asks to repaint all widget area.
|
abstract void |
FrontPanel.repaintWidget(Widget w,
int x,
int y,
int width,
int height)
Asks to repaint a part of widget area.
|