public interface DropletInvocation
Interface representing an invocation of some droplet, to be customized by a DropletCustomizer.
Modifier and Type | Interface and Description |
---|---|
static class |
DropletInvocation.Parameter
Support class representing a droplet parameter.
|
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
CLASS_VERSION |
Modifier and Type | Method and Description |
---|---|
void |
addPropertyChangeListener(java.beans.PropertyChangeListener listener)
Listen for parameter changes
|
java.lang.String |
getInvocationText()
Returns the HTML representation of this invocation.
|
ParamDescriptor[] |
getParamDescriptors()
Get the set of ParamDescriptors associated with this invocation
|
DropletInvocation.Parameter |
getParameter(java.lang.String name)
Gets the string value of a parameter.
|
void |
putParameter(java.lang.String name,
DropletInvocation.Parameter value)
Sets the value of a parameter.
|
void |
removeParameter(java.lang.String name)
Removes a parameter from the invocation.
|
void |
removePropertyChangeListener(java.beans.PropertyChangeListener listener)
Stop listening for parameter changes
|
static final java.lang.String CLASS_VERSION
void putParameter(java.lang.String name, DropletInvocation.Parameter value)
name
- the parameter namevalue
- the string value of the parameterisOutput
- true if the parameter is an OPARAMvoid removeParameter(java.lang.String name)
DropletInvocation.Parameter getParameter(java.lang.String name)
java.lang.String getInvocationText()
ParamDescriptor[] getParamDescriptors()
void addPropertyChangeListener(java.beans.PropertyChangeListener listener)
void removePropertyChangeListener(java.beans.PropertyChangeListener listener)