WorkspaceHandlerExtension
Any extension that implements WorkspaceHandlerExtension will be looking at all the events fired from the workspace tab panel.
Methods
method | Description |
---|---|
onChange(WorkspaceEventConstant event) |
Each time it'll be some new tab panel event the method onChange it'll be triggered by OpenKM. |
Sample
public class HandlersTest implements WorkspaceHandlerExtension {
@Override
public void onChange(WorkspaceEventConstant event) {
Window.alert("workspace event fired");
}
}