Uses of Interface
org.scijava.module.ModuleInfo
-
Packages that use ModuleInfo Package Description org.scijava.command org.scijava.console org.scijava.menu org.scijava.module org.scijava.module.event org.scijava.script -
-
Uses of ModuleInfo in org.scijava.command
Classes in org.scijava.command that implement ModuleInfo Modifier and Type Class Description classCommandInfoA collection of metadata about a particularCommand.classDynamicCommandInfoHelper class for maintaining aDynamicCommand's associatedModuleInfo.Constructors in org.scijava.command with parameters of type ModuleInfo Constructor Description CommandModuleItem(ModuleInfo info, Field field) -
Uses of ModuleInfo in org.scijava.console
Methods in org.scijava.console with parameters of type ModuleInfo Modifier and Type Method Description static Map<String,Object>ConsoleUtils. parseParameterString(String parameterString, ModuleInfo info)Deprecated.UseParseServiceinstead.static Map<String,Object>ConsoleUtils. parseParameterString(String parameterString, ModuleInfo info, LogService log)Deprecated.UseParseServiceinstead. -
Uses of ModuleInfo in org.scijava.menu
Methods in org.scijava.menu that return ModuleInfo Modifier and Type Method Description ModuleInfoShadowMenu. getModuleInfo()Gets the module linked to this node, or null if node is not a leaf.ModuleInfoShadowMenuIterator. next()Methods in org.scijava.menu with parameters of type ModuleInfo Modifier and Type Method Description booleanShadowMenu. add(ModuleInfo o)Adds the given module to the menu structure.booleanShadowMenu. update(ModuleInfo module)Updates the menu structure to reflect changes in the given module.Method parameters in org.scijava.menu with type arguments of type ModuleInfo Modifier and Type Method Description booleanShadowMenu. addAll(Collection<? extends ModuleInfo> c)Adds the given modules to the menu structure.booleanShadowMenu. updateAll(Collection<? extends ModuleInfo> c)Updates the menu structure to reflect changes in the given modules.Constructor parameters in org.scijava.menu with type arguments of type ModuleInfo Constructor Description ShadowMenu(Context context, Collection<? extends ModuleInfo> modules)Constructs a root menu node populated with the given modules. -
Uses of ModuleInfo in org.scijava.module
Subinterfaces of ModuleInfo in org.scijava.module Modifier and Type Interface Description interfaceMutableModuleInfoModuleInfoextension allowing manipulation of its metadata.Classes in org.scijava.module that implement ModuleInfo Modifier and Type Class Description classAbstractModuleInfoAbstract superclass ofModuleInfoimplementation.classDefaultMutableModuleInfoDefaultMutableModuleInfoimplementation.Methods in org.scijava.module that return ModuleInfo Modifier and Type Method Description ModuleInfoAbstractModuleItem. getInfo()ModuleInfoModule. getInfo()Gets metadata about this module.ModuleInfoModuleItem. getInfo()Gets theModuleInfoto which this item belongs.ModuleInfoDefaultModuleService. getModuleById(String id)ModuleInfoModuleService. getModuleById(String id)Gets the module with the given identifier string.ModuleInfoDefaultModuleService. getModuleForAccelerator(Accelerator acc)ModuleInfoModuleService. getModuleForAccelerator(Accelerator acc)Gets the module for a given keyboard shortcut.Methods in org.scijava.module that return types with arguments of type ModuleInfo Modifier and Type Method Description List<ModuleInfo>DefaultModuleService. getModules()List<ModuleInfo>ModuleService. getModules()Gets the list of available modules.Methods in org.scijava.module with parameters of type ModuleInfo Modifier and Type Method Description voidDefaultModuleService. addModule(ModuleInfo module)voidModuleService. addModule(ModuleInfo module)Manually registers a module with the module service.ModuleDefaultModuleService. createModule(ModuleInfo info)ModuleModuleService. createModule(ModuleInfo info)Creates an instance of the given module.voidDefaultModuleService. removeModule(ModuleInfo module)voidModuleService. removeModule(ModuleInfo module)Manually unregisters a module with the module service.Future<Module>DefaultModuleService. run(ModuleInfo info, boolean process, Object... inputs)Future<Module>DefaultModuleService. run(ModuleInfo info, boolean process, Map<String,Object> inputMap)Future<Module>DefaultModuleService. run(ModuleInfo info, List<? extends ModulePreprocessor> pre, List<? extends ModulePostprocessor> post, Object... inputs)Future<Module>DefaultModuleService. run(ModuleInfo info, List<? extends ModulePreprocessor> pre, List<? extends ModulePostprocessor> post, Map<String,Object> inputMap)Future<Module>ModuleService. run(ModuleInfo info, boolean process, Object... inputs)Executes the given module.Future<Module>ModuleService. run(ModuleInfo info, boolean process, Map<String,Object> inputMap)Executes the given module.Future<Module>ModuleService. run(ModuleInfo info, List<? extends ModulePreprocessor> pre, List<? extends ModulePostprocessor> post, Object... inputs)Executes the given module.Future<Module>ModuleService. run(ModuleInfo info, List<? extends ModulePreprocessor> pre, List<? extends ModulePostprocessor> post, Map<String,Object> inputMap)Executes the given module.Method parameters in org.scijava.module with type arguments of type ModuleInfo Modifier and Type Method Description voidDefaultModuleService. addModules(Collection<? extends ModuleInfo> modules)voidModuleService. addModules(Collection<? extends ModuleInfo> modules)Manually registers a list of modules with the module service.voidDefaultModuleService. removeModules(Collection<? extends ModuleInfo> modules)voidModuleService. removeModules(Collection<? extends ModuleInfo> modules)Manually unregisters a list of modules with the module service.Constructors in org.scijava.module with parameters of type ModuleInfo Constructor Description AbstractModuleItem(ModuleInfo info)DefaultMutableModuleItem(ModuleInfo info, String name, Class<T> type)DefaultMutableModuleItem(ModuleInfo info, ModuleItem<T> item)Creates a new module item with the same values as the given item. -
Uses of ModuleInfo in org.scijava.module.event
Constructors in org.scijava.module.event with parameters of type ModuleInfo Constructor Description ModulesAddedEvent(ModuleInfo o)ModulesListEvent(ModuleInfo o)ModulesRemovedEvent(ModuleInfo o)ModulesUpdatedEvent(ModuleInfo o)Constructor parameters in org.scijava.module.event with type arguments of type ModuleInfo Constructor Description ModulesAddedEvent(Collection<? extends ModuleInfo> c)ModulesListEvent(Collection<? extends ModuleInfo> c)ModulesRemovedEvent(Collection<? extends ModuleInfo> c)ModulesUpdatedEvent(Collection<? extends ModuleInfo> c) -
Uses of ModuleInfo in org.scijava.script
Classes in org.scijava.script that implement ModuleInfo Modifier and Type Class Description classScriptInfoMetadata about a script.
-