Uses of Interface
org.eclipse.jpt.common.utility.Command

Packages that use Command
org.eclipse.jpt.common.utility   
org.eclipse.jpt.common.utility.model.listener   
 

Uses of Command in org.eclipse.jpt.common.utility
 

Classes in org.eclipse.jpt.common.utility that implement Command
static class Command.Disabled
          Singleton implementation of the command interface that will throw an exception when executed.
static class Command.Null
          Singleton implementation of the command interface that will do nothing when executed.
 

Fields in org.eclipse.jpt.common.utility declared as Command
static Command Command.Null.INSTANCE
           
static Command Command.Disabled.INSTANCE
           
 

Methods in org.eclipse.jpt.common.utility that return Command
static Command Command.Null.instance()
           
static Command Command.Disabled.instance()
           
 

Methods in org.eclipse.jpt.common.utility with parameters of type Command
 void CommandExecutor.execute(Command command)
          Execute the specified command.
 void CommandExecutor.Default.execute(Command command)
           
 

Uses of Command in org.eclipse.jpt.common.utility.model.listener
 

Constructors in org.eclipse.jpt.common.utility.model.listener with parameters of type Command
CommandChangeListener(Command command)
          Construct a change listener that executes the specified command whenever it receives any change notification from the model to which it is added as a listener.