ToolBarBoxExtension
From OpenKM Documentation
Methods
Widget getWidget()
getWidget()
Returns the associated widget to the tool box that will be showed when it'll be selected.
Example
public class ToolBarBoxExample extends ToolBarBoxExtension {
public ToolBarBoxEx(Image img, String text) {
super(img, text);
}
@Override
public Widget getWidget() {
// TODO Auto-generated method stub
return null;
}
}