public abstract class JIPipeDefaultJavaExtension extends AbstractService implements JIPipeJavaExtension
JIPipeJavaExtension
Constructor and Description |
---|
JIPipeDefaultJavaExtension()
Creates a new instance
|
Modifier and Type | Method and Description |
---|---|
void |
configureDefaultImageJAdapters(Class<? extends JIPipeData> dataClass,
ImageJDataImporter defaultImporter,
ImageJDataExporter defaultExporter)
Sets the default ImageJ adapters
|
void |
configureDefaultImageJAdapters(Class<? extends JIPipeData> dataClass,
String defaultImporterId,
String defaultExporterId)
Sets the default ImageJ adapters
|
JIPipeAuthorMetadata.List |
getAcknowledgements()
Returns additionally cited authors
|
abstract List<JIPipeAuthorMetadata> |
getAuthors() |
PluginCategoriesEnumParameter.List |
getCategories()
The categories of this extension (see
PluginCategoriesEnumParameter for predefined values) |
abstract String |
getCitation() |
Set<JIPipeDependency> |
getDependencies()
List of JIPipe dependencies.
|
abstract StringList |
getDependencyCitations()
Returns all dependent work
|
Path |
getDependencyLocation()
Gets the location of the JAR/JSON that defined the dependency
|
String |
getDependencyVersion() |
abstract HTMLText |
getDescription() |
abstract String |
getLicense() |
JIPipeMetadata |
getMetadata() |
abstract String |
getName() |
JIPipe |
getRegistry()
Returns the registry
|
HTMLText |
getSummary()
A short summary
|
ImageParameter |
getThumbnail()
Returns the thumbnail
|
abstract String |
getWebsite() |
void |
registerContextMenuAction(NodeUIContextAction action)
Registers a custom context menu action
|
void |
registerDatatype(String id,
Class<? extends JIPipeData> dataClass,
URL icon,
Class<? extends JIPipeResultDataSlotRowUI> rowUI,
Class<? extends JIPipeResultDataSlotPreview> cellUI,
JIPipeDataOperation... operations)
Registers a new data type
|
void |
registerDatatype(String id,
Class<? extends JIPipeData> dataClass,
URL icon,
JIPipeDataOperation... operations)
Registers a new data type
|
void |
registerDatatypeConversion(JIPipeDataConverter converter)
Registers a non-trivial conversion between data types.
|
void |
registerDatatypeDisplayOperation(String dataTypeId,
JIPipeDataDisplayOperation operation)
Registers an additional non-default display operation for the data type.
|
void |
registerDatatypeImportOperation(String dataTypeId,
JIPipeDataImportOperation operation)
Registers an import operation for the data type.
|
void |
registerDatatypeOperation(String dataTypeId,
JIPipeDataOperation... operations)
Shortcut for registering import and display operations.
|
void |
registerEnumParameterType(String id,
Class<? extends Enum<?>> parameterClass,
String name,
String description)
Registers an
Enum as parameter |
<T extends ExternalEnvironment,U extends ListParameter<T>> |
registerEnvironment(Class<T> environmentClass,
Class<U> listClass,
ExternalEnvironmentSettings settings,
String id,
String name,
String description,
Icon icon)
Registers a new environment type.
|
void |
registerEnvironmentInstaller(Class<? extends ExternalEnvironment> environmentClass,
Class<? extends ExternalEnvironmentInstaller> installerClass,
Icon icon)
Registers an installer for a given environment
|
void |
registerExpressionFunction(ExpressionFunction function)
Registers a function that can be used within expressions.
|
void |
registerExpressionFunction(ExpressionFunction function,
String name,
String description)
Registers a function that can be used within expressions.
|
void |
registerGraphEditorToolBarButtonExtension(Class<? extends GraphEditorToolBarButtonExtension> klass)
Registers a custom button for the graph editor toolbar
|
void |
registerImageJDataExporter(String id,
ImageJDataExporter dataExporter,
Class<? extends ImageJDataExporterUI> uiClass)
Registers an importer for data from ImageJ
|
void |
registerImageJDataImporter(String id,
ImageJDataImporter dataImporter,
Class<? extends ImageJDataImporterUI> importerUIClass)
Registers an importer for data from ImageJ
|
void |
registerMenuExtension(Class<? extends JIPipeMenuExtension> klass)
Registers a custom menu entry.
|
void |
registerNodeExample(JIPipeNodeTemplate template)
Registers a node template as example for a node.
|
void |
registerNodeExamplesFromResources(Class<?> resourceClass,
String directory)
Registers node examples from plugin resources.
|
void |
registerNodeExamplesFromResources(JIPipeResourceManager resourceManager,
String subDirectory)
Registers node examples from plugin resources via a
JIPipeResourceManager . |
void |
registerNodeType(JIPipeNodeInfo info)
Registers a new node type.
|
void |
registerNodeType(JIPipeNodeInfo info,
URL icon)
Registers a new node type.
|
void |
registerNodeType(JIPipeNodeRegistrationTask task)
Registers a new node type with additional dependencies.
|
void |
registerNodeType(String id,
Class<? extends JIPipeGraphNode> nodeClass)
Registers a new node type.
|
void |
registerNodeType(String id,
Class<? extends JIPipeGraphNode> nodeClass,
URL icon)
Registers a new node type.
|
void |
registerNodeTypeCategory(JIPipeNodeTypeCategory category)
Registers a node type category
|
void |
registerParameterEditor(Class<?> parameterClass,
Class<? extends JIPipeParameterEditorUI> uiClass)
Registers an editor for any parameter type that inherits from the provided parameter class.
|
void |
registerParameterGenerator(Class<?> parameterClass,
JIPipeParameterGenerator generator)
Registers a UI that can generate parameters
|
void |
registerParameterType(JIPipeParameterTypeInfo info,
Class<?> listClass,
Class<? extends JIPipeParameterEditorUI> uiClass)
Registers a new parameter type and respective editor
|
void |
registerParameterType(JIPipeParameterTypeInfo info,
Class<? extends JIPipeParameterEditorUI> uiClass)
Registers a new parameter type and respective editor
|
void |
registerParameterType(String id,
Class<?> parameterClass,
String name,
String description)
Registers a new parameter type that already has an existing editor.
|
void |
registerParameterType(String id,
Class<?> parameterClass,
String name,
String description,
Class<? extends JIPipeParameterEditorUI> uiClass)
Registers a new parameter type.
|
void |
registerParameterType(String id,
Class<?> parameterClass,
Supplier<Object> newInstanceGenerator,
Function<Object,Object> duplicateFunction,
String name,
String description,
Class<? extends JIPipeParameterEditorUI> uiClass)
Registers a new parameter type and respective editors
|
<T> void |
registerParameterType(String id,
Class<T> parameterClass,
Class<? extends ListParameter<T>> listClass,
Supplier<Object> newInstanceGenerator,
Function<Object,Object> duplicateFunction,
String name,
String description,
Class<? extends JIPipeParameterEditorUI> uiClass)
Registers a new parameter type and respective editors
|
void |
registerProjectTemplatesFromResources(Class<?> resourceClass,
String directory)
Registers project templates from plugin resources
Will detect *.jip files and attempt to load them (fails silently)
|
void |
registerProjectTemplatesFromResources(JIPipeResourceManager resourceManager,
String subDirectory)
Registers project templates from plugin resources via a
JIPipeResourceManager . |
void |
registerSettingsSheet(String id,
String name,
Icon icon,
String category,
Icon categoryIcon,
JIPipeParameterCollection parameterCollection)
Registers a new settings sheet
|
void |
registerSettingsSheet(String id,
String name,
String description,
Icon icon,
String category,
Icon categoryIcon,
JIPipeParameterCollection parameterCollection)
Registers a new settings sheet
|
void |
registerTableColumnOperation(String id,
ColumnOperation operation,
String name,
String shortName,
String description)
Registers a table column operation.
|
void |
registerTableColumnOperationAndExpressionFunction(String id,
ColumnOperation operation,
String name,
String shortName,
String description)
Registers a table column operation.
|
void |
registerUtility(Class<?> categoryClass,
Class<?> utilityClass)
Registers an arbitrary utility associated to a category class.
|
void |
reportValidity(JIPipeIssueReport report)
Generates a validity report
|
void |
setRegistry(JIPipe registry)
Sets the registry
|
getContext, setContext, toString
getInfo, getPriority, setInfo, setPriority
context
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
getLogo, getSplashIcons, postprocess, register
isActivated, isBeta, isCoreExtension, isScheduledForActivation, isScheduledForDeactivation
getAllDependencies, getAllDependencies, getAllImageJUpdateSiteDependencies, getDependencyId, getImageJUpdateSiteDependencies, getImageJUpdateSites, simplifyAndMinimize, toHtmlElement
generateValidityReport
initialize, registerEventHandlers
getIdentifier, log
context
compareTo, getPriority, setPriority
getInfo, setInfo
getLocation
getVersion
dispose
public JIPipeDefaultJavaExtension()
public PluginCategoriesEnumParameter.List getCategories()
PluginCategoriesEnumParameter
for predefined values)public JIPipeAuthorMetadata.List getAcknowledgements()
public ImageParameter getThumbnail()
public Set<JIPipeDependency> getDependencies()
JIPipeDependency
getDependencies
in interface JIPipeDependency
public abstract StringList getDependencyCitations()
public abstract String getCitation()
public JIPipeMetadata getMetadata()
getMetadata
in interface JIPipeDependency
public abstract String getName()
public abstract HTMLText getDescription()
public HTMLText getSummary()
public abstract List<JIPipeAuthorMetadata> getAuthors()
public abstract String getWebsite()
public abstract String getLicense()
public void reportValidity(JIPipeIssueReport report)
JIPipeValidatable
reportValidity
in interface JIPipeValidatable
reportValidity
in interface JIPipeDependency
report
- the report to be added topublic String getDependencyVersion()
getDependencyVersion
in interface JIPipeDependency
public JIPipe getRegistry()
JIPipeJavaExtension
getRegistry
in interface JIPipeJavaExtension
public void setRegistry(JIPipe registry)
JIPipeJavaExtension
setRegistry
in interface JIPipeJavaExtension
registry
- The registrypublic void registerMenuExtension(Class<? extends JIPipeMenuExtension> klass)
klass
- The menu entrypublic void registerGraphEditorToolBarButtonExtension(Class<? extends GraphEditorToolBarButtonExtension> klass)
klass
- the toolbar button classpublic void registerContextMenuAction(NodeUIContextAction action)
action
- the actionpublic void registerDatatypeConversion(JIPipeDataConverter converter)
converter
- the converterpublic void registerDatatype(String id, Class<? extends JIPipeData> dataClass, URL icon, Class<? extends JIPipeResultDataSlotRowUI> rowUI, Class<? extends JIPipeResultDataSlotPreview> cellUI, JIPipeDataOperation... operations)
id
- Data type iddataClass
- Data classicon
- Icon for the data type. Can be null.rowUI
- Results analyzer row UI for the data type. Can be null. If null, it will use the default row UI that manages JIPipeDataImportOperation
instances.cellUI
- Results table cell UI. Can be null.operations
- list of operations to register. passed to registerDatatypeOperation.public void registerDatatype(String id, Class<? extends JIPipeData> dataClass, URL icon, JIPipeDataOperation... operations)
id
- Data type iddataClass
- Data classicon
- Icon for the data type. Can be null.operations
- list of operations to register. passed to registerDatatypeOperation.public void registerDatatypeOperation(String dataTypeId, JIPipeDataOperation... operations)
dataTypeId
- the data type id. it is not required that the data type is registered, yet. If empty, the operations are applying to all data.operations
- operationspublic void registerDatatypeImportOperation(String dataTypeId, JIPipeDataImportOperation operation)
dataTypeId
- the data type id. it is not required that the data type is registered, yet. If empty, the operations are applying to all data.operation
- the operationpublic void registerDatatypeDisplayOperation(String dataTypeId, JIPipeDataDisplayOperation operation)
dataTypeId
- the data type id. it is not required that the data type is registered, yet. If empty, the operations are applying to all data.operation
- the operationpublic void registerNodeTypeCategory(JIPipeNodeTypeCategory category)
category
- the categorypublic void registerNodeType(String id, Class<? extends JIPipeGraphNode> nodeClass)
JIPipeNodeInfo
is generated as JIPipeJavaNodeInfo
.id
- Algorithm IDnodeClass
- Algorithm classpublic void registerNodeType(String id, Class<? extends JIPipeGraphNode> nodeClass, URL icon)
JIPipeNodeInfo
is generated as JIPipeJavaNodeInfo
.id
- Algorithm IDnodeClass
- Algorithm classicon
- custom iconpublic void registerNodeType(JIPipeNodeInfo info)
JIPipeNodeRegistrationTask
insteadinfo
- Algorithm infopublic void registerNodeType(JIPipeNodeInfo info, URL icon)
JIPipeNodeRegistrationTask
insteadinfo
- Algorithm infoicon
- custom algorithm iconpublic void registerNodeType(JIPipeNodeRegistrationTask task)
task
- Algorithm registration taskpublic void registerEnumParameterType(String id, Class<? extends Enum<?>> parameterClass, String name, String description)
Enum
as parameterid
- Unique ID of this parameter typeparameterClass
- Parameter classname
- Parameter class namedescription
- Description for the parameter typepublic void registerParameterType(String id, Class<?> parameterClass, Supplier<Object> newInstanceGenerator, Function<Object,Object> duplicateFunction, String name, String description, Class<? extends JIPipeParameterEditorUI> uiClass)
id
- Unique ID of this parameter typeparameterClass
- Parameter classnewInstanceGenerator
- Function that creates a new instanceduplicateFunction
- Function that copies an existing instancename
- Parameter class namedescription
- Description for the parameter typeuiClass
- Parameter editor UI. Can be null if the editor is already provided.public void registerParameterType(String id, Class<?> parameterClass, String name, String description)
id
- Unique ID of this parameter typeparameterClass
- Parameter classname
- Parameter class namedescription
- Description for the parameter typepublic void registerParameterType(String id, Class<?> parameterClass, String name, String description, Class<? extends JIPipeParameterEditorUI> uiClass)
id
- Unique ID of this parameter typeparameterClass
- Parameter classname
- Parameter class namedescription
- Description for the parameter typeuiClass
- Parameter editor UI. Can be null if the editor is already provided.public <T> void registerParameterType(String id, Class<T> parameterClass, Class<? extends ListParameter<T>> listClass, Supplier<Object> newInstanceGenerator, Function<Object,Object> duplicateFunction, String name, String description, Class<? extends JIPipeParameterEditorUI> uiClass)
T
- parameter classid
- Unique ID of this parameter typeparameterClass
- Parameter classlistClass
- Optional list class. If not null this creates a registration entry for the equivalent list entrynewInstanceGenerator
- Function that creates a new instance. If null, the function calls the default constructorduplicateFunction
- Function that copies an existing instance. If null, the function calls the copy constructorname
- Parameter class namedescription
- Description for the parameter typeuiClass
- Parameter editor UI. Can be null if the editor is already provided.public void registerParameterType(JIPipeParameterTypeInfo info, Class<? extends JIPipeParameterEditorUI> uiClass)
info
- the infouiClass
- Parameter editor UI. Can be null if the editor is already provided.public void registerParameterType(JIPipeParameterTypeInfo info, Class<?> listClass, Class<? extends JIPipeParameterEditorUI> uiClass)
info
- the infolistClass
- a parameter type that is a list of the registered typeuiClass
- Parameter editor UI. Can be null if the editor is already provided.public void registerParameterEditor(Class<?> parameterClass, Class<? extends JIPipeParameterEditorUI> uiClass)
JIPipeDynamicParameterCollection
)parameterClass
- the parameter classuiClass
- the editor classpublic void registerParameterGenerator(Class<?> parameterClass, JIPipeParameterGenerator generator)
parameterClass
- Parameter classgenerator
- The generator objectpublic void registerTableColumnOperation(String id, ColumnOperation operation, String name, String shortName, String description)
id
- operation idoperation
- the operation instancename
- the nameshortName
- a short name (like min, max, avg, ...)description
- a descriptionpublic void registerTableColumnOperationAndExpressionFunction(String id, ColumnOperation operation, String name, String shortName, String description)
id
- operation idoperation
- the operation instancename
- the nameshortName
- a short name (like min, max, avg, ...)description
- a descriptionpublic void registerExpressionFunction(ExpressionFunction function, String name, String description)
function
- the function. its internal name property must be uniquename
- human-readable namedescription
- the descriptionpublic void registerExpressionFunction(ExpressionFunction function)
JIPipeDocumentation
annotations.function
- the function. its internal name property must be uniquepublic void configureDefaultImageJAdapters(Class<? extends JIPipeData> dataClass, String defaultImporterId, String defaultExporterId)
dataClass
- the data typedefaultImporterId
- the ID of the importer. the importer must be registered. can be null (ignore value)defaultExporterId
- the ID of the exporter. the exporter must be registered. can be null (ignore value)public void configureDefaultImageJAdapters(Class<? extends JIPipeData> dataClass, ImageJDataImporter defaultImporter, ImageJDataExporter defaultExporter)
dataClass
- the data typedefaultImporter
- the importer. the importer must be registered. can be null (ignore value)defaultExporter
- the exporter. the exporter must be registered. can be null (ignore value)public void registerImageJDataImporter(String id, ImageJDataImporter dataImporter, Class<? extends ImageJDataImporterUI> importerUIClass)
id
- the unique IDdataImporter
- the importer instanceimporterUIClass
- the UI (can be null to fall back to DefaultImageJDataImporterUI
)public void registerImageJDataExporter(String id, ImageJDataExporter dataExporter, Class<? extends ImageJDataExporterUI> uiClass)
id
- the unique IDdataExporter
- the exporter instanceuiClass
- the UI (can be null to fall back to DefaultImageJDataExporterUI
)public void registerSettingsSheet(String id, String name, Icon icon, String category, Icon categoryIcon, JIPipeParameterCollection parameterCollection)
id
- unique IDname
- sheet nameicon
- sheet iconcategory
- sheet category (if null defaults to "General")categoryIcon
- category icon (if null defaults to a predefined icon)parameterCollection
- the settingspublic void registerSettingsSheet(String id, String name, String description, Icon icon, String category, Icon categoryIcon, JIPipeParameterCollection parameterCollection)
id
- unique IDname
- sheet namedescription
- sheet descriptionicon
- sheet iconcategory
- sheet category (if null defaults to "General")categoryIcon
- category icon (if null defaults to a predefined icon)parameterCollection
- the settingspublic void registerUtility(Class<?> categoryClass, Class<?> utilityClass)
categoryClass
- the category classutilityClass
- the utility classpublic void registerNodeExample(JIPipeNodeTemplate template)
template
- the templatepublic void registerNodeExamplesFromResources(JIPipeResourceManager resourceManager, String subDirectory)
JIPipeResourceManager
.
Will detect *.json files and attempt to load them (fails silently)resourceManager
- the resource managersubDirectory
- the directory within the resource manager's base pathpublic void registerNodeExamplesFromResources(Class<?> resourceClass, String directory)
resourceClass
- the resource classdirectory
- the directory within the resourcespublic void registerProjectTemplatesFromResources(JIPipeResourceManager resourceManager, String subDirectory)
JIPipeResourceManager
.
Will detect *.jip files and attempt to load them (fails silently)resourceManager
- the resource managersubDirectory
- the directory within the resource manager's base pathpublic void registerProjectTemplatesFromResources(Class<?> resourceClass, String directory)
resourceClass
- the resource classdirectory
- the directory within the resourcespublic <T extends ExternalEnvironment,U extends ListParameter<T>> void registerEnvironment(Class<T> environmentClass, Class<U> listClass, ExternalEnvironmentSettings settings, String id, String name, String description, Icon icon)
T
- environment classU
- list of environment classenvironmentClass
- the environment class. Must be JSON-serializable. Will be registered as parameter typelistClass
- the list list. Will be registered as parameter type with ID [id]-listsettings
- Settings page that stores the user's presetsid
- the ID of the environment class. Will be used as parameter type IDname
- the name of the environmentdescription
- the description of the environmentpublic void registerEnvironmentInstaller(Class<? extends ExternalEnvironment> environmentClass, Class<? extends ExternalEnvironmentInstaller> installerClass, Icon icon)
environmentClass
- the environment typeinstallerClass
- the installer classicon
- icon for the installerpublic Path getDependencyLocation()
JIPipeDependency
getDependencyLocation
in interface JIPipeDependency
Copyright © 2020–2022 Leibniz Institute for Natural Product Research and Infection Biology - Hans Knöll Institute (HKI). All rights reserved.