|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface Paintable
Interface implemented by all classes that can be painted. Classes implementing this interface know how to output themselves to a UIDL stream and that way describing to the terminal how it should be displayed in the UI.
Nested Class Summary | |
---|---|
static class |
Paintable.RepaintRequestEvent
Repaint request event is thrown when the paintable needs to be repainted. |
static interface |
Paintable.RepaintRequestListener
Listens repaint requests. |
Method Summary | |
---|---|
void |
addListener(Paintable.RepaintRequestListener listener)
Adds repaint request listener. |
String |
getDebugId()
Get's currently set debug identifier |
void |
paint(PaintTarget target)
Paints the Paintable into a UIDL stream. |
void |
removeListener(Paintable.RepaintRequestListener listener)
Removes repaint request listener. |
void |
requestRepaint()
Requests that the paintable should be repainted as soon as possible. |
void |
requestRepaintRequests()
Request sending of repaint events on any further visible changes. |
void |
setDebugId(String id)
Adds an unique id for component that get's transferred to terminal for testing purposes. |
Method Detail |
---|
void paint(PaintTarget target) throws PaintException
Paints the Paintable into a UIDL stream. This method creates the UIDL sequence describing it and outputs it to the given UIDL stream.
It is called when the contents of the component should be painted in response to the component first being shown or having been altered so that its visual representation is changed.
target
- the target UIDL stream where the component should paint itself
to.
PaintException
- if the paint operation failed.void requestRepaint()
void setDebugId(String id)
Note, that with the current terminal implementation the identifier cannot be changed while the component is visible. This means that the identifier should be set before the component is painted for the first time and kept the same while visible in the client.
id
- A short (< 20 chars) alphanumeric idString getDebugId()
void addListener(Paintable.RepaintRequestListener listener)
listener
- the listener to be added.void removeListener(Paintable.RepaintRequestListener listener)
listener
- the listener to be removed.void requestRepaintRequests()
This method is normally used only by the terminals to note paintables about implicit repaints (painting the component without actually invoking paint method).
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |