WorkspaceHandlerExtension
From OpenKM Documentation
Revision as of 15:37, 14 June 2010 by Jllort (talk | contribs) (Created page with 'Any extension that implements WorkspaceHandlerExtension will be watching all events fired from workspace tab panel == Method == onChange(WorkspaceEventConstant event) == onCha…')
Any extension that implements WorkspaceHandlerExtension will be watching all events fired from workspace tab panel
Method
onChange(WorkspaceEventConstant event)
onChange(WorkspaceEventConstant event)
Each time it'll be some new tab panel event the method onChange it'll be fired by OpenKM
Example
public class HandlersTest implements WorkspaceHandlerExtension {
@Override
public void onChange(WorkspaceEventConstant event) {
Window.alert("navigator event fired");
}
}