Difference between revisions of "ToolBarBoxExtension"
From OpenKM Documentation
Line 1: | Line 1: | ||
== Methods == | == Methods == | ||
Widget getWidget() | Widget getWidget() | ||
− | + | String getExtensionUUID() | |
== getWidget() == | == getWidget() == | ||
Returns the associated widget to the tool box that will be showed when it'll be selected. | Returns the associated widget to the tool box that will be showed when it'll be selected. | ||
+ | == getExtensionUUID() == | ||
+ | Return unique extension id | ||
== Example == | == Example == | ||
Line 20: | Line 22: | ||
return null; | return null; | ||
} | } | ||
− | + | ||
+ | @Override | ||
+ | public String getExtensionUUID() { | ||
+ | return String.valueOf("d9dab640-d098-11df-bd3b-0800200c9a66"); | ||
+ | } | ||
} | } | ||
</source> | </source> | ||
[[Category: OpenKM plugin extensions]] | [[Category: OpenKM plugin extensions]] |
Revision as of 17:01, 5 October 2010
Methods
Widget getWidget() String getExtensionUUID()
getWidget()
Returns the associated widget to the tool box that will be showed when it'll be selected.
getExtensionUUID()
Return unique extension id
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;
}
@Override
public String getExtensionUUID() {
return String.valueOf("d9dab640-d098-11df-bd3b-0800200c9a66");
}
}