public @interface TaskParameter
Modifier and Type | Fields and Description |
---|---|
static java.lang.String |
DIRECTION_IN
The constant for direction in (value is read only and assigned before task is started).
|
static java.lang.String |
DIRECTION_INOUT
The constant for direction inout (value is read/write).
|
static java.lang.String |
DIRECTION_OUT
The constant for direction out (value is write only and propagated after task is finished).
|
Modifier and Type | Required Element and Description |
---|---|
java.lang.String |
name
The parameter name.
|
Modifier and Type | Optional Element and Description |
---|---|
java.lang.Class<?> |
clazz
The clazz (i.e.
|
java.lang.String |
description
The parameter description.
|
java.lang.String |
direction
The direction (in, out or inout).
|
java.lang.String |
initialvalue
The initial value (as Java expression).
|
public static final java.lang.String DIRECTION_IN
public static final java.lang.String DIRECTION_OUT
public static final java.lang.String DIRECTION_INOUT
public abstract java.lang.String direction
public abstract java.lang.Class<?> clazz