Uses of Interface
org.scijava.command.Command
-
Packages that use Command Package Description org.scijava.command org.scijava.options org.scijava.platform -
-
Uses of Command in org.scijava.command
Classes in org.scijava.command that implement Command Modifier and Type Class Description classContextCommandA command that knows its context.classDynamicCommandA command with a variable number of inputs and outputs.classInputsA way to build a dynamic set of inputs, whose values are then harvested by the preprocessing framework.classInteractiveCommandA command intended to be run interactively.classModuleCommandA command which implementsModuledirectly (rather than using theCommandModuleadapter class).classUnimplementedCommandA command that is not yet implemented.Methods in org.scijava.command with type parameters of type Command 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.<C extends Command>
CommandInfoDefaultCommandService. getCommand(Class<C> commandClass)<CT extends Command>
List<CommandInfo>CommandService. getCommands(List<PluginInfo<CT>> plugins)Gets the list ofCommands corresponding to the given plugins.<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.<C extends Command>
List<CommandInfo>DefaultCommandService. getCommandsOfClass(Class<C> commandClass)<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)<C extends Command>
Future<CommandModule>CommandService. run(Class<C> commandClass, boolean process, Object... inputs)Executes the first command of the given class.<C extends Command>
Future<CommandModule>CommandService. run(Class<C> commandClass, boolean process, Map<String,Object> inputMap)Executes the first command of the given class.<C extends Command>
Future<CommandModule>DefaultCommandService. run(Class<C> commandClass, boolean process, Object... inputs)<C extends Command>
Future<CommandModule>DefaultCommandService. run(Class<C> commandClass, boolean process, Map<String,Object> inputMap)Methods in org.scijava.command that return Command Modifier and Type Method Description CommandCommandInfo. createInstance()CommandCommandModule. getCommand()Gets the command instance handled by this module.Methods in org.scijava.command that return types with arguments of type Command Modifier and Type Method Description Class<? extends Command>CommandInfo. getPluginClass()Class<Command>DefaultCommandService. getPluginType()Class<? extends Command>CommandInfo. loadClass()Methods in org.scijava.command with parameters of type Command Modifier and Type Method Description ModuleCommandInfo. createModule(Command commandInstance)Instantiates the module described by this module info, around the specified existing command instance.Method parameters in org.scijava.command with type arguments of type Command Modifier and Type Method Description voidCommandInfo. setPluginClass(Class<? extends Command> pluginClass)Constructors in org.scijava.command with parameters of type Command Constructor Description CommandModule(CommandInfo info, Command command)Creates a command module for the givenCommandInfo, around the specifiedCommandinstance.Constructor parameters in org.scijava.command with type arguments of type Command Constructor Description CommandInfo(Class<? extends Command> commandClass)Creates a new command metadata object.CommandInfo(Class<? extends Command> commandClass, Plugin annotation)Creates a new command metadata object.CommandInfo(PluginInfo<Command> info)Creates a new command metadata object describing the same command as the givenPluginInfo.CommandInfo(PluginInfo<Command> info, String className, Class<? extends Command> commandClass, Plugin annotation)CommandInfo(PluginInfo<Command> info, String className, Class<? extends Command> commandClass, Plugin annotation) -
Uses of Command in org.scijava.options
Classes in org.scijava.options that implement Command Modifier and Type Class Description classOptionsPluginBase class for all options-oriented plugins. -
Uses of Command in org.scijava.platform
Methods in org.scijava.platform that return types with arguments of type Command Modifier and Type Method Description List<Class<? extends Command>>AppEventService. getCommands()Deprecated.Tag relevant commands instead:attrs = { @Attr(name = "app-command") }List<Class<? extends Command>>DefaultAppEventService. getCommands()Deprecated.
-