C - defines the base component where others extend fromA - defines the basic event typeM - defines the basic message typepublic interface IComponentView<C,A,M> extends IComponentHandle<C,A,M>
| Modifier and Type | Method and Description |
|---|---|
C |
postHandle(C node,
Message<A,M> message)
To avoid toolkit specific threading issues the postHandle method always
called after the handle method.
|
handleC postHandle(C node, Message<A,M> message) throws java.lang.Exception
node - , the ui nodemessage - , the trigger messagejava.lang.Exception - , this method can throw any Exception because it will be implemented in any component.