Uses of Interface
org.eclipse.e4.xwt.input.ICommand

Packages that use ICommand
org.eclipse.e4.xwt   
org.eclipse.e4.xwt.input   
 

Uses of ICommand in org.eclipse.e4.xwt
 

Methods in org.eclipse.e4.xwt that return ICommand
static ICommand XWT.getCommand(java.lang.String name)
          Find a command by name
 

Methods in org.eclipse.e4.xwt that return types with arguments of type ICommand
static java.util.Map<java.lang.String,ICommand> XWT.getCommands()
          Return all registered commands
 

Methods in org.eclipse.e4.xwt with parameters of type ICommand
static void XWT.registerCommand(java.lang.String name, ICommand command)
          Register a command to a name
 

Uses of ICommand in org.eclipse.e4.xwt.input
 

Classes in org.eclipse.e4.xwt.input that implement ICommand
 class RoutedCommand
           
 

Methods in org.eclipse.e4.xwt.input that return ICommand
 ICommand InputBinding.getCommand()
           
 ICommand CommandBinding.getCommand()
           
 

Methods in org.eclipse.e4.xwt.input with parameters of type ICommand
 void InputBinding.setCommand(ICommand command)
           
 void CommandBinding.setCommand(ICommand command)
           
 

Constructors in org.eclipse.e4.xwt.input with parameters of type ICommand
CommandBinding(ICommand command)