Skip to content
Other versions

Loading…

ToolBarBoxExtension

method Description
getWidget() Returns the associated widget to the tool box that will be showed when it’ll is selected.
getExtensionUUID() Return the unique extension id
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;
}
@Override
public String getExtensionUUID() {
return String.valueOf("d9dab640-d098-11df-bd3b-0800200c9a66");
}
}