01: /*
02: * GWT-Ext Widget Library
03: * Copyright(c) 2007-2008, GWT-Ext.
04: * licensing@gwt-ext.com
05: *
06: * http://www.gwt-ext.com/license
07: */
08:
09: package com.gwtext.client.widgets.menu;
10:
11: /**
12: * Provides a common registry of all menu items on a page.
13: */
14: public class MenuMgr {
15:
16: private MenuMgr() {
17: }
18:
19: /**
20: * Hides all menus that are currently visible.
21: */
22: public static native void hideAll()/*-{
23: $wnd.Ext.menu.MenuMgr.hideAll();
24: }-*/;
25: }
|