GWT 2.4.0

Uses of Interface
com.google.gwt.user.client.Command

Packages that use Command
com.google.gwt.user.client Fundamental user-interface classes used in client-side GWT code. 
com.google.gwt.user.client.ui Widgets, Panels, and other user-interface classes. 
 

Uses of Command in com.google.gwt.user.client
 

Methods in com.google.gwt.user.client that return Command
 Command CommandCanceledException.getCommand()
          Returns the Command which was canceled by the user as a result of a slow script warning.
 

Methods in com.google.gwt.user.client with parameters of type Command
static void DeferredCommand.add(Command cmd)
          Deprecated. As of release 1.4, replaced by DeferredCommand.addCommand(Command)
static void DeferredCommand.addCommand(Command cmd)
          Deprecated. Enqueues a Command to be fired after all current events have been handled.
 

Constructors in com.google.gwt.user.client with parameters of type Command
CommandCanceledException(Command command)
           
 

Uses of Command in com.google.gwt.user.client.ui
 

Fields in com.google.gwt.user.client.ui declared as Command
 Command RenderablePanel.detachedInitializationCallback
           
 Command RenderablePanel.wrapInitializationCallback
           
 

Methods in com.google.gwt.user.client.ui that return Command
 Command MenuItem.getCommand()
          Gets the command associated with this item.
 

Methods in com.google.gwt.user.client.ui with parameters of type Command
 MenuItem MenuBar.addItem(SafeHtml html, Command cmd)
          Adds a menu item to the bar containing SafeHtml, that will fire the given command when it is selected.
 MenuItem MenuBar.addItem(java.lang.String text, boolean asHTML, Command cmd)
          Adds a menu item to the bar, that will fire the given command when it is selected.
 MenuItem MenuBar.addItem(java.lang.String text, Command cmd)
          Adds a menu item to the bar, that will fire the given command when it is selected.
 void MenuItem.setCommand(Command cmd)
          Sets the command associated with this item.
 

Constructors in com.google.gwt.user.client.ui with parameters of type Command
MenuItem(SafeHtml html, Command cmd)
          Constructs a new menu item that fires a command when it is selected.
MenuItem(java.lang.String text, boolean asHTML, Command cmd)
          Constructs a new menu item that fires a command when it is selected.
MenuItem(java.lang.String text, Command cmd)
          Constructs a new menu item that fires a command when it is selected.
 


GWT 2.4.0