|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface EBComponent
A component on the EditBus. Every plugin class that uses the EditBus for receiving messages must implement this interface.
EBMessage| Method Summary | |
|---|---|
void |
handleMessage(EBMessage message)
Handles a message sent on the EditBus. |
| Method Detail |
|---|
void handleMessage(EBMessage message)
EBMessage class. Typically
this is done with one or more if blocks that test
whether the message is an instance of a derived message class in
which the component has an interest. For example:
if(msg instanceof BufferUpdate) {
// a buffer's state has changed!
}
else if(msg instanceof ViewUpdate) {
// a view's state has changed!
}
// ... and so on
message - The message
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||