Uses of Interface
org.kie.workbench.common.command.client.Command
-
-
Uses of Command in org.kie.workbench.common.command.client
Classes in org.kie.workbench.common.command.client that implement Command Modifier and Type Class Description classAbstractCommand<T,V>Base type for commandsMethods in org.kie.workbench.common.command.client with parameters of type Command Modifier and Type Method Description CommandResult<V>CommandManager. allow(T context, Command<T,V> command)Check whether the given command can be executed.CommandResult<V>DelegateCommandManager. allow(C context, Command<C,V> command)CommandResult<V>CommandManager. execute(T context, Command<T,V> command)Execute the given command.CommandResult<V>DelegateCommandManager. execute(C context, Command<C,V> command)voidCommandListener. onAllow(T context, Command<T,V> command, CommandResult<V> result)voidCommandListener. onExecute(T context, Command<T,V> command, CommandResult<V> result)voidCommandListener. onUndo(T context, Command<T,V> command, CommandResult<V> result)protected voidDelegateCommandManager. postAllow(C context, Command<C,V> command, CommandResult<V> result)protected voidDelegateCommandManager. postExecute(C context, Command<C,V> command, CommandResult<V> result)protected voidDelegateCommandManager. postUndo(C context, Command<C,V> command, CommandResult<V> result)protected voidDelegateCommandManager. preAllow(C context, Command<C,V> command)protected voidDelegateCommandManager. preExecute(C context, Command<C,V> command)protected voidDelegateCommandManager. preUndo(C context, Command<C,V> command)CommandResult<V>CommandManager. undo(T context, Command<T,V> command)Undo an executed command.CommandResult<V>DelegateCommandManager. undo(C context, Command<C,V> command) -
Uses of Command in org.kie.workbench.common.command.client.event
Methods in org.kie.workbench.common.command.client.event that return Command Modifier and Type Method Description Command<C,V>AbstractCommandEvent. getCommand()Constructors in org.kie.workbench.common.command.client.event with parameters of type Command Constructor Description AbstractCommandEvent(Command<C,V> command, CommandResult<V> result) -
Uses of Command in org.kie.workbench.common.command.client.exception
Constructors in org.kie.workbench.common.command.client.exception with parameters of type Command Constructor Description BadCommandArgumentsException(Command<?,?> command, Object argument, String message)CommandException(String message, Command<?,?> command)CommandException(Command<?,?> command) -
Uses of Command in org.kie.workbench.common.command.client.impl
Methods in org.kie.workbench.common.command.client.impl with parameters of type Command Modifier and Type Method Description CommandResult<V>CommandManagerImpl. allow(C context, Command<C,V> command)CommandResult<V>CommandManagerImpl. execute(C context, Command<C,V> command)CommandResult<V>CommandManagerImpl. undo(C context, Command<C,V> command) -
Uses of Command in org.kie.workbench.common.command.client.registry
Classes in org.kie.workbench.common.command.client.registry with type parameters of type Command Modifier and Type Class Description classAbstractCommandRegistryManager<C extends Command>This bean provides two Registries which can be used to manage the Undo/Redo functionality for an editor Registry doneCommands contains executed commands by the user, while undoneCommand registry holds the undo commands by the user, which can be redo.
-