Difference between revisions of "ToolBarBoxExtension"

From OpenKM Documentation
Jump to: navigation, search
m
Line 11: Line 11:
  
 
== refreshAll() ==
 
== refreshAll() ==
Refresh all data
+
Refresh all data. Called when all dashboard widgets are refreshing.
  
 
== Example ==
 
== Example ==

Revision as of 19:41, 13 November 2010

Methods

Widget getWidget()
String getExtensionUUID()
void refreshAll()

getWidget()

Returns the associated widget to the tool box that will be showed when it'll be selected.

getExtensionUUID()

Return unique extension id

refreshAll()

Refresh all data. Called when all dashboard widgets are refreshing.

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");
         	}
                
                @Override
		public void refreshAll() {
                       // Do something RPC calls, etc..
		}
	}