ToolBarBoxExtension

From OpenKM Documentation
Revision as of 17:28, 15 June 2010 by Jllort (talk | contribs) (Created page with '== Methods == Widget getWidget() == getWidget() == Returns the associated widget to the tool box that will be showed when it'll be selected. == Example == <source lang="java"> …')

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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;
		}
		
	}