| Package | Description |
|---|---|
| org.dcs.query_process |
Factory classes and execution engine for the BPEL-style auto script.
|
| org.dcs.query_process.model |
The non-event script elements that must be used to build the script, with
Script_Model
as the base container. |
| org.dcs.query_process.model.activity |
The process structures that define the script flow.
|
| org.dcs.query_process.model.data |
Data structures, including some variable-creation structures, new to
licas. |
| org.dcs.query_process.model.event |
Elements for single script events.
|
| org.dcs.query_process.model.link |
| Modifier and Type | Method and Description |
|---|---|
static Script_Element |
Script_Factory.createNewElement(java.lang.String scriptType,
java.lang.String elemID)
Create a new element of the specified type.
|
static Script_Element |
Script_Factory.createNewElement(java.lang.String scriptType,
java.lang.String elemID,
java.lang.String internalID,
Script_Element addTo)
Create a new element of the specified type.
|
static Script_Element |
Script_Factory.elementFromScript(org.licas_xml.abs.Element scriptXml,
Script_Element addTo)
Create a new element based on the xml description.
|
protected Script_Element |
Script_Engine.ListCounter.getParent()
Get the parent script element of the last indexed element.
|
protected Script_Element |
Script_Engine.ListCounter.nextElement(boolean pop)
Get the next indexed element in the list.
|
| Modifier and Type | Method and Description |
|---|---|
static Script_Element |
Script_Factory.createNewElement(java.lang.String scriptType,
java.lang.String elemID,
java.lang.String internalID,
Script_Element addTo)
Create a new element of the specified type.
|
static Script_Element |
Script_Factory.elementFromScript(org.licas_xml.abs.Element scriptXml,
Script_Element addTo)
Create a new element based on the xml description.
|
static boolean |
Script_Factory.isAlwaysTrue(Script_Element scriptElement)
Return true if the script element condition is always true.
|
static boolean |
Script_Factory.isAutoElement(Script_Element scriptElement)
Return true if the script element is auto-related, where the script method is to
invoke a behaviour using a message retrieved the auto engine queue.
|
static boolean |
Script_Factory.isControlLoop(Script_Element scriptElement)
Return true if the script element is a control loop type.
|
static boolean |
Script_Factory.isParallel(Script_Element scriptElement)
Return true if the script element is a parallel statement type, or of type
Script_Parallel.. |
static boolean |
Script_Factory.isSequential(Script_Element scriptElement)
Return true if the script element is a sequential statement type.
|
| Modifier and Type | Class and Description |
|---|---|
class |
Script_Method
This class stores information on a reflection-based method description.
|
class |
Script_Model
This class stores all of the elements that are used to create an auto engine script.
|
class |
Script_Otherwise
This class stores information on a default action of a switch statement.
|
class |
Script_Process
This class stores a process script as a Java object model.
|
class |
Script_Wait
This class pauses the currently running thread for a specified amount of time.
|
| Modifier and Type | Field and Description |
|---|---|
protected Script_Element |
Script_Element.parentElement
The parent element of this one
|
| Modifier and Type | Method and Description |
|---|---|
Script_Element |
Script_Element.getParent()
Get the parent element.
|
Script_Element |
Script_Model.getScriptWithID(java.lang.String scriptID)
Get the script element with the specified id.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Script_Element.setParent(Script_Element parent)
Set the parent element.
|
| Constructor and Description |
|---|
Script_Element(org.licas_xml.abs.Element autoXml,
Script_Element parent)
Create a new instance of Script_Element and add the xml-based description of the
element values.
|
Script_Method(org.licas_xml.abs.Element autoXml,
Script_Element parent)
Create a new instance of Script_Method and add the xml-based description of the
element values.
|
Script_Model(org.licas_xml.abs.Element autoXml,
Script_Element parent)
Create a new instance of Script_Model and add the xml-based description of the
element values.
|
Script_Otherwise(org.licas_xml.abs.Element autoXml,
Script_Element parent)
Create a new instance of Script_Otherwise and add the xml-based description of the
element values.
|
Script_Process(org.licas_xml.abs.Element autoXml,
Script_Element parent)
Create a new instance of Script_Process and add the xml-based description of the
element values.
|
Script_Wait(org.licas_xml.abs.Element autoXml,
Script_Element parent)
Create a new instance of Script_Wait and add the xml-based description of the
element values.
|
| Modifier and Type | Class and Description |
|---|---|
class |
Script_Auto
This is a base class for retrieving information from a stored list, such as from
a message queue.
|
class |
Script_Case
This class stores information on a case condition of a switch statement.
|
class |
Script_Flow
This class stores information on a flow statement, which should contain a number of
Script_Event statements as sub-events. |
class |
Script_Parallel
This class stores information on an event parallel statement.
|
class |
Script_Pick
This class stores information on a pick statement, which should contain a number of
Script_Event statements as sub-events. |
class |
Script_Sequence
This class stores information on an event sequence statement.
|
class |
Script_Switch
This class stores information on a switch statement, which should contain a number of
Script_Case statements as sub-events. |
class |
Script_WhileLoop
This class stores information on a while loop.
|
| Constructor and Description |
|---|
Script_Auto(org.licas_xml.abs.Element autoXml,
Script_Element parent)
Create a new instance of Script_Auto and add the xml-based description of the
element values.
|
Script_Case(org.licas_xml.abs.Element autoXml,
Script_Element parent)
Create a new instance of Script_Case and add the xml-based description of the
element values.
|
Script_Flow(org.licas_xml.abs.Element autoXml,
Script_Element parent)
Create a new instance of Script_Flow and add the xml-based description of the
element values.
|
Script_Parallel(org.licas_xml.abs.Element autoXml,
Script_Element parent)
Create a new instance of Script_Parallel and add the xml-based description of the
element values.
|
Script_Pick(org.licas_xml.abs.Element autoXml,
Script_Element parent)
Create a new instance of Script_Pick and add the xml-based description of the
element values.
|
Script_Sequence(org.licas_xml.abs.Element autoXml,
Script_Element parent)
Create a new instance of Script_Sequence and add the xml-based description of the
element values.
|
Script_Switch(org.licas_xml.abs.Element autoXml,
Script_Element parent)
Create a new instance of Script_Switch and add the xml-based description of the
element values.
|
Script_WhileLoop(org.licas_xml.abs.Element autoXml,
Script_Element parent)
Create a new instance of Script_WhileLoop and add the xml-based description of the
element values.
|
| Modifier and Type | Class and Description |
|---|---|
class |
Script_Conditions
This class stores an attribute set that other elements might use.
|
class |
Script_Receive
This class stores information on a method description, where the script method is to
invoke a behaviour using a message retrieved the auto engine queue.
|
class |
Script_Reflection
Base class to store information on any reflection-based description, probably a method to invoke.
|
class |
Script_Variable
This class stores information on a variable.
|
class |
Script_VariableInstance
This class stores information on a variable instance.
|
class |
Script_VarMap
This class stores information on a set of variable values stored as key-value pairs.
|
| Constructor and Description |
|---|
Script_Conditions(org.licas_xml.abs.Element autoXml,
Script_Element parent)
Create a new instance of Script_Conditions and add the xml-based description of the
element values.
|
Script_Receive(org.licas_xml.abs.Element autoXml,
Script_Element parent)
Create a new instance of Script_Receive and add the xml-based description of the
element values.
|
Script_Reflection(org.licas_xml.abs.Element autoXml,
Script_Element parent)
Create a new instance of Auto_Method and add the xml-based description of the
element values.
|
Script_Variable(org.licas_xml.abs.Element autoXml,
Script_Element parent)
Create a new instance of Script_Variable and add the xml-based description of the
element values.
|
Script_VariableInstance(org.licas_xml.abs.Element autoXml,
Script_Element parent)
Create a new instance of Script_VariableInstance and add the xml-based description of the
element values.
|
Script_VarMap(org.licas_xml.abs.Element autoXml,
Script_Element parent)
Create a new instance of Script_VarMap and add the xml-based description of the
element values.
|
| Modifier and Type | Class and Description |
|---|---|
class |
Script_Event
An event is the definition of a basic activity of the script process.
|
class |
Script_Execute
This class is for a specific or self-contained type of element that is invoked through
the
execute method. |
class |
Script_Invoke
This class stores information on a event invoke statement.
|
class |
Script_Link
This class stores information on a event invoke statement.
|
| Constructor and Description |
|---|
Script_Event(org.licas_xml.abs.Element autoXml,
Script_Element parent)
Create a new instance of Script_Event and add the xml-based description of the
element values.
|
Script_Execute(org.licas_xml.abs.Element autoXml,
Script_Element parent)
Create a new instance of Script_Execute and add the xml-based description of the
element values.
|
Script_Invoke(org.licas_xml.abs.Element autoXml,
Script_Element parent)
Create a new instance of Script_Invoke and add the xml-based description of the
element values.
|
Script_Link(org.licas_xml.abs.Element autoXml,
Script_Element parent)
Create a new instance of Script_Link and add the xml-based description of the
element values.
|
| Modifier and Type | Class and Description |
|---|---|
class |
Script_Source
This class stores information on a source.
|
class |
Script_Target
This class defines a script target link.
|
| Constructor and Description |
|---|
Script_Source(org.licas_xml.abs.Element autoXml,
Script_Element parent)
Create a new instance of Script_Source and add the xml-based description of the
element values.
|
Script_Target(org.licas_xml.abs.Element autoXml,
Script_Element parent)
Create a new instance of BPEL_Target and add the xml-based description of the
element values.
|