oracle.apps.fnd.wf.design
Class Transition

java.lang.Object
  |
  +--oracle.apps.fnd.wf.common.Element
        |
        +--oracle.apps.fnd.wf.common.BaseComponent
              |
              +--oracle.apps.fnd.wf.design.DesignBaseComponent
                    |
                    +--oracle.apps.fnd.wf.design.Transition

public class Transition
extends DesignBaseComponent

Transition is the container for the workflow transition. Transitions appear as arrows in the process diagram and represent the completion of one activity and the activation of another.


Fields inherited from class oracle.apps.fnd.wf.design.DesignBaseComponent
RCS_ID, RCS_ID_RECORDED
 
Fields inherited from class oracle.apps.fnd.wf.common.Element
ELEMENT_DB_CREATED, ELEMENT_DB_CREATING, ELEMENT_DB_DIRTY, ELEMENT_DB_LOADED, ELEMENT_DB_LOADING, ELEMENT_DB_NOT_INITIALIZED, ELEMENT_DB_SAVED, ELEMENT_DB_SAVING
 
Constructor Summary
Transition()
           
 
Method Summary
 java.lang.String getActivityResultCode()
          Returns the activity result code of this transition.
 LookupCode getExitCode()
          Returns the exit code of the transition.
 java.lang.String getGeometry()
          Returns the arrow geometry of this transition.
 ProcessActivity getToNode()
          Returns the process activity (node) where this transition points to.
 java.lang.String getToNodeName()
          Returns the node name where this transition points to.
 boolean isDefaultTransition()
          Returns the default status of the transition.
 void setActivityResultCode(java.lang.String pActivityResultCode)
          Setter function for the activity result code of this transition.
 void setGeometry(java.lang.String pGeometry)
          Setter function for transition's arrow geometry.
 void setToNodeName(java.lang.String pToNodeName)
          Setter function for the node where the transition points to.
 
Methods inherited from class oracle.apps.fnd.wf.design.DesignBaseComponent
assign, createRuntimeInstance, getAccessController, getAttribute, getAttributes, getDescription, getDisplayName, resolveReference, setDescription, setDisplayName, setName, setResolved, toString
 
Methods inherited from class oracle.apps.fnd.wf.common.BaseComponent
addChild, getChildByTypeAndName, getChildren, getChildrenByName, getChildrenByType, getName, getParent, removeChild, removeChildren
 
Methods inherited from class oracle.apps.fnd.wf.common.Element
create, getDBStatus, getId, load, save, setStore
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Transition

public Transition()
Method Detail

getToNodeName

public java.lang.String getToNodeName()
Returns the node name where this transition points to.
Returns:
To node's name.

setToNodeName

public void setToNodeName(java.lang.String pToNodeName)
Setter function for the node where the transition points to.
Parameters:
pToNodeName - : Node's name where the transition points to.

getGeometry

public java.lang.String getGeometry()
Returns the arrow geometry of this transition.
Returns:
Arrow geometry.

setGeometry

public void setGeometry(java.lang.String pGeometry)
Setter function for transition's arrow geometry.
Parameters:
pGeometry - : Arrow geometry of the transition.

getActivityResultCode

public java.lang.String getActivityResultCode()
Returns the activity result code of this transition.
Returns:
Activity result code.

setActivityResultCode

public void setActivityResultCode(java.lang.String pActivityResultCode)
Setter function for the activity result code of this transition.
Parameters:
pActivityResultCode - : Activity result code.

isDefaultTransition

public boolean isDefaultTransition()
Returns the default status of the transition.
Returns:
True if the transition is a default event.

getExitCode

public LookupCode getExitCode()
Returns the exit code of the transition.
Returns:
Lookup code of the exit code.

getToNode

public ProcessActivity getToNode()
Returns the process activity (node) where this transition points to.
Returns:
To node.