Package | Description |
---|---|
com.uc4.api.objects |
This package contains classes related to objects in the Automation Engine.
|
com.uc4.communication.requests |
This package contains request classes that can be sent using the
Connection class. |
Modifier and Type | Method and Description |
---|---|
java.util.Iterator<PromptSetDefinition> |
ObjectValues.activePromptSetIterator()
Returns an iterator over
PromptSetDefinition , Iterates over
only non deleted entries. |
java.util.Iterator<PromptSetDefinition> |
ObjectValues.promptSetIterator()
Returns an iterator over
PromptSetDefinition . |
java.util.Iterator<PromptSetDefinition> |
TaskValues.promptSetIterator()
Returns an iterator over
PromptSetDefinition . |
Modifier and Type | Method and Description |
---|---|
void |
ObjectValues.addPromptSet(PromptSetDefinition def)
Adds a new PromptSet to this object.
|
Modifier and Type | Method and Description |
---|---|
void |
ObjectValues.rearrange(java.util.List<PromptSetDefinition> orderedPromptSets)
This method can be used to rearrange the prompt sets.
|
Constructor and Description |
---|
PromptSetDefinition(PromptSetDefinition promptSetDefinition)
This constructor is required for creating a copy of the PromptSetDefinition.
|
Modifier and Type | Method and Description |
---|---|
PromptSetDefinition |
AddPromptSet.getPromptSet()
Returns the Prompt Set definition.
|
PromptSetDefinition |
TaskPromptSetContent.getPromptSetDef()
Returns the definition of the PromptSet.
|
Constructor and Description |
---|
TaskPromptSetContent(PromptSetDefinition promptSetDef)
Deprecated.
Use TaskPromptSetContent(PromptSetDefinition promptSetDef, UC4Object obj) instead
|
TaskPromptSetContent(PromptSetDefinition promptSetDef,
ITaskItem task)
Creates a request to get the content of a PromptSet of a JOBP task.
|
TaskPromptSetContent(PromptSetDefinition promptSetDef,
JobPlanMonitor.Task task)
Creates a request to get the content of a PromptSet of a JOBP task that was executed.
|
TaskPromptSetContent(PromptSetDefinition promptSetDef,
java.lang.String idnr)
Creates a request to get the content of a PromptSet of an object.
|
TaskPromptSetContent(PromptSetDefinition promptSetDef,
UC4Object obj)
Creates a request to get the content of a PromptSet of an object.
|
TaskPromptSetContent(TaskPromptSetContent original,
PromptSetDefinition def)
Clone the given original TaskPromptSetContent for the given task, and using the given PromptSetDefinition
|