Uses of Class
org.scijava.command.CommandInfo
-
Packages that use CommandInfo Package Description org.scijava.command -
-
Uses of CommandInfo in org.scijava.command
Methods in org.scijava.command that return CommandInfo Modifier and Type Method Description <C extends Command>
CommandInfoCommandService. getCommand(Class<C> commandClass)Gets the first available command of the given class, or null if none.CommandInfoCommandService. getCommand(String className)Gets the first available command of the given class name, or null if none.<C extends Command>
CommandInfoDefaultCommandService. getCommand(Class<C> commandClass)CommandInfoDefaultCommandService. getCommand(String className)CommandInfoCommandModule. getInfo()CommandInfoModuleCommand. getInfo()Methods in org.scijava.command that return types with arguments of type CommandInfo Modifier and Type Method Description List<CommandInfo>CommandService. getCommands()Gets the list of all availableCommands).<CT extends Command>
List<CommandInfo>CommandService. getCommands(List<PluginInfo<CT>> plugins)Gets the list ofCommands corresponding to the given plugins.List<CommandInfo>DefaultCommandService. getCommands()<CT extends Command>
List<CommandInfo>DefaultCommandService. getCommands(List<PluginInfo<CT>> plugins)<C extends Command>
List<CommandInfo>CommandService. getCommandsOfClass(Class<C> commandClass)Gets the list of commands of the given class.List<CommandInfo>CommandService. getCommandsOfClass(String className)Gets the list of commands with the given class name.<C extends Command>
List<CommandInfo>DefaultCommandService. getCommandsOfClass(Class<C> commandClass)List<CommandInfo>DefaultCommandService. getCommandsOfClass(String className)<CT extends Command>
List<CommandInfo>CommandService. getCommandsOfType(Class<CT> type)Gets the list ofCommands of the given type.<CT extends Command>
List<CommandInfo>DefaultCommandService. getCommandsOfType(Class<CT> type)Methods in org.scijava.command with parameters of type CommandInfo Modifier and Type Method Description Future<CommandModule>CommandService. run(CommandInfo info, boolean process, Object... inputs)Executes the given command.Future<CommandModule>CommandService. run(CommandInfo info, boolean process, Map<String,Object> inputMap)Executes the given command.Future<CommandModule>DefaultCommandService. run(CommandInfo info, boolean process, Object... inputs)Future<CommandModule>DefaultCommandService. run(CommandInfo info, boolean process, Map<String,Object> inputMap)Constructors in org.scijava.command with parameters of type CommandInfo Constructor Description CommandModule(CommandInfo info)Creates a command module for the givenPluginInfo.CommandModule(CommandInfo info, Command command)Creates a command module for the givenCommandInfo, around the specifiedCommandinstance.DynamicCommandInfo(CommandInfo info, Class<? extends DynamicCommand> moduleClass)
-