Interface | Description |
---|---|
TaskAware |
Interface that wants to know a little about it's name and how many connections it has.
|
Class | Description |
---|---|
AbstractTaskAware |
Enum | Description |
---|---|
OutputPolicy |
Annotation Type | Description |
---|---|
CheckboxParameter |
GENERAL NOTE: parameters that are displayed in auto generated GUIs should only be primitive or string types
automatically defines a field as a parameter and defines the gui for it This produces a checkbox for the parameter in
the gui
|
ChoiceParameter |
GENERAL NOTE: parameters that are displayed in auto generated GUIs should only be primitive or string types
automatically defines a field as a parameter and defines the gui for it title is a title for the gui values is a list
of choices that will appear in a drop down menu If this list is empty, then the parameter nor GUI will be set.
|
CustomGUIComponent |
Annotation to be applied to a method in a class that is annotated with the @Tool annotation This annotation
identifies a method that returns a JPanel that will be used as the basis of the popup panel.
|
FileParameter |
GENERAL NOTE: parameters that are displayed in auto generated GUIs should only be primitive or string types
automatically defines a field as a parameter and defines the gui for it This produces a file chooser for the
parameter in the gui
|
LabelParameter |
GENERAL NOTE: parameters that are displayed in auto generated GUIs should only be primitive or string types
automatically defines a field as a parameter and defines the gui for it
The gui is just a label
|
Parameter |
An annotation to allow parameters to be defined.
|
Process |
Annotation to be applied to a method in a class that is annotated with the @Tool annotation This annotation
identifies the method to be called during execution.
|
RenderingHintDetail |
The hint value must match a rendering hint given in the Tool annotation
|
SliderParameter |
GENERAL NOTE: parameters that are displayed in auto generated GUIs should only be primitive or string types.
|
TextAreaParameter |
GENERAL NOTE: parameters that are displayed in auto generated GUIs should only be primitive or string types.
|
TextFieldParameter |
GENERAL NOTE: parameters that are displayed in auto generated GUIs should only be primitive or string types.
|
Tool |
Annotation that should be applied to a class wanting to be wrapped as a Tool This annotation should be applied to the
class definition.
|