Package | Description |
---|---|
loci.deepzoom.workflow |
Modifier and Type | Interface and Description |
---|---|
interface |
IWorkFlow
An interface to build a workflow based on components that are chained
together.
|
Modifier and Type | Class and Description |
---|---|
class |
PluginModule
TODO
|
class |
WorkFlow
Builds a workflow consisting of chained components.
|
Modifier and Type | Method and Description |
---|---|
IModule |
PluginModuleFactory.create(String xml)
Creates a plugin module from XML.
|
IModule |
ModuleFactory.create(String xml)
Creates a component from XML.
|
IModule |
IModuleFactory.create(String xml)
Creates a module from XML.
|
Modifier and Type | Method and Description |
---|---|
void |
WorkFlow.add(IModule component) |
void |
IWorkFlow.add(IModule component)
Adds a component to the workflow in phase I.
|
void |
WorkFlow.wire(IModule source,
IModule dest) |
void |
IWorkFlow.wire(IModule source,
IModule dest)
Chains default output of one component to default input of another.
|
void |
WorkFlow.wire(IModule source,
IModule dest,
String destName) |
void |
IWorkFlow.wire(IModule source,
IModule dest,
String destName)
Chains default output of one component to named input of another.
|
void |
WorkFlow.wire(IModule source,
String sourceName,
IModule dest) |
void |
IWorkFlow.wire(IModule source,
String sourceName,
IModule dest)
Chains named output of one component to default input of another.
|
void |
WorkFlow.wire(IModule source,
String sourceName,
IModule dest,
String destName) |
void |
IWorkFlow.wire(IModule source,
String sourceName,
IModule dest,
String destName)
Chains named output of one component to named input of another.
|
void |
WorkFlow.wireInput(IModule dest) |
void |
IWorkFlow.wireInput(IModule dest)
Chains default workflow input to default input of component.
|
void |
WorkFlow.wireInput(IModule dest,
String destName) |
void |
IWorkFlow.wireInput(IModule dest,
String destName)
Chains default workflow input to named input of component.
|
void |
WorkFlow.wireInput(String inName,
IModule dest) |
void |
IWorkFlow.wireInput(String inName,
IModule dest)
Chains named workflow input to default input of component.
|
void |
WorkFlow.wireInput(String inName,
IModule dest,
String destName) |
void |
IWorkFlow.wireInput(String inName,
IModule dest,
String destName)
Chains named workflow input to named input of component.
|
void |
WorkFlow.wireOutput(IModule source) |
void |
IWorkFlow.wireOutput(IModule source)
Chains default component output to default workflow output.
|
void |
WorkFlow.wireOutput(IModule source,
String sourceName) |
void |
IWorkFlow.wireOutput(IModule source,
String sourceName)
Chains named component output to default workflow output.
|
void |
WorkFlow.wireOutput(String outName,
IModule source) |
void |
IWorkFlow.wireOutput(String outName,
IModule source)
Chains default component output to named workflow output.
|
void |
WorkFlow.wireOutput(String outName,
IModule source,
String sourceName) |
void |
IWorkFlow.wireOutput(String outName,
IModule source,
String sourceName)
Chains named component output to named workflow output.
|
Copyright © 2015–2022 SciJava. All rights reserved.