Package jadex.bpmn.tools
Class ProcessThreadInfo
- java.lang.Object
- 
- jadex.bpmn.tools.ProcessThreadInfo
 
- 
 public class ProcessThreadInfo extends java.lang.ObjectVisualization data about a process thread.
- 
- 
Field SummaryFields Modifier and Type Field Description protected java.lang.StringactidThe activity id.protected java.lang.StringactivityThe activity name.protected java.lang.StringdataThe data of the process.protected java.lang.StringedgesThe data edges of the process.protected java.lang.StringexceptionThe exception that has just occurred in the process (if any).protected java.lang.StringidThe thread that executed this activity.protected java.lang.StringlaneThe lane name.protected java.lang.StringparentidThe parent id.protected java.lang.StringpoolThe pool name.protected booleanwaitingIs the process in a waiting state.
 - 
Constructor SummaryConstructors Constructor Description ProcessThreadInfo()Create a new info.ProcessThreadInfo(java.lang.String id, java.lang.String parentid, java.lang.String activity, java.lang.String actid, java.lang.String pool, java.lang.String lane)Create a new history info.ProcessThreadInfo(java.lang.String id, java.lang.String parentid, java.lang.String activity, java.lang.String actid, java.lang.String pool, java.lang.String lane, java.lang.String exception, boolean waiting, java.lang.String data, java.lang.String edges)Create a new process info.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)Test if two objects are equal.java.lang.StringgetActId()Get the actid.java.lang.StringgetActivity()Get the activity.java.lang.StringgetData()Get the data.voidgetData(java.lang.String data)Set the data.java.lang.StringgetEdges()Get the edges.java.lang.StringgetException()Get the exception.java.lang.StringgetLane()Get the lane.java.lang.StringgetParentId()Get the parentid.java.lang.StringgetPool()Get the pool.java.lang.StringgetThreadId()Get the thread id.inthashCode()Get the hashcodebooleanisWaiting()Get the waiting flag.voidsetActId(java.lang.String actid)Set the actid.voidsetActivity(java.lang.String activity)Set the activity.voidsetEdges(java.lang.String edges)Set the edges.voidsetException(java.lang.String exception)Set the exception.voidsetLane(java.lang.String lane)Set the lane.voidsetParentId(java.lang.String parentid)Set the parentid.voidsetPool(java.lang.String pool)Set the pool.voidsetThreadId(java.lang.String id)Set the thread id.voidsetWaiting(boolean waiting)Set the waiting flag.java.lang.StringtoString()Get the string representation.
 
- 
- 
- 
Field Detail- 
idprotected java.lang.String id The thread that executed this activity.
 - 
parentidprotected java.lang.String parentid The parent id.
 - 
activityprotected java.lang.String activity The activity name.
 - 
actidprotected java.lang.String actid The activity id.
 - 
poolprotected java.lang.String pool The pool name.
 - 
laneprotected java.lang.String lane The lane name.
 - 
exceptionprotected java.lang.String exception The exception that has just occurred in the process (if any).
 - 
waitingprotected boolean waiting Is the process in a waiting state.
 - 
dataprotected java.lang.String data The data of the process.
 - 
edgesprotected java.lang.String edges The data edges of the process.
 
- 
 - 
Constructor Detail- 
ProcessThreadInfopublic ProcessThreadInfo() Create a new info.
 - 
ProcessThreadInfopublic ProcessThreadInfo(java.lang.String id, java.lang.String parentid, java.lang.String activity, java.lang.String actid, java.lang.String pool, java.lang.String lane)Create a new history info.
 - 
ProcessThreadInfopublic ProcessThreadInfo(java.lang.String id, java.lang.String parentid, java.lang.String activity, java.lang.String actid, java.lang.String pool, java.lang.String lane, java.lang.String exception, boolean waiting, java.lang.String data, java.lang.String edges)Create a new process info.
 
- 
 - 
Method Detail- 
getThreadIdpublic java.lang.String getThreadId() Get the thread id.- Returns:
- The thread id.
 
 - 
setThreadIdpublic void setThreadId(java.lang.String id) Set the thread id.- Parameters:
- id- The thread id.
 
 - 
getParentIdpublic java.lang.String getParentId() Get the parentid. return The parentid.
 - 
setParentIdpublic void setParentId(java.lang.String parentid) Set the parentid.- Parameters:
- parentid- The parentid to set.
 
 - 
getActivitypublic java.lang.String getActivity() Get the activity.- Returns:
- The activity.
 
 - 
setActivitypublic void setActivity(java.lang.String activity) Set the activity.- Parameters:
- activity- The activity.
 
 - 
getActIdpublic java.lang.String getActId() Get the actid.- Returns:
- The actid.
 
 - 
setActIdpublic void setActId(java.lang.String actid) Set the actid.- Parameters:
- actid- The actid to set.
 
 - 
getPoolpublic java.lang.String getPool() Get the pool.- Returns:
- The pool.
 
 - 
setPoolpublic void setPool(java.lang.String pool) Set the pool.- Parameters:
- pool- The pool.
 
 - 
getLanepublic java.lang.String getLane() Get the lane.- Returns:
- The lane.
 
 - 
setLanepublic void setLane(java.lang.String lane) Set the lane.- Parameters:
- lane- The lane.
 
 - 
getExceptionpublic java.lang.String getException() Get the exception.- Returns:
- The exception.
 
 - 
setExceptionpublic void setException(java.lang.String exception) Set the exception.- Parameters:
- exception- The exception.
 
 - 
isWaitingpublic boolean isWaiting() Get the waiting flag.- Returns:
- The waiting flag.
 
 - 
setWaitingpublic void setWaiting(boolean waiting) Set the waiting flag.- Parameters:
- waiting- The waiting flag.
 
 - 
getDatapublic java.lang.String getData() Get the data.- Returns:
- The data.
 
 - 
getDatapublic void getData(java.lang.String data) Set the data.- Parameters:
- data- The data.
 
 - 
getEdgespublic java.lang.String getEdges() Get the edges.- Returns:
- The edges.
 
 - 
setEdgespublic void setEdges(java.lang.String edges) Set the edges.- Parameters:
- edges- The edges to set.
 
 - 
toStringpublic java.lang.String toString() Get the string representation.- Overrides:
- toStringin class- java.lang.Object
 
 - 
equalspublic boolean equals(java.lang.Object obj) Test if two objects are equal.- Overrides:
- equalsin class- java.lang.Object
 
 - 
hashCodepublic int hashCode() Get the hashcode- Overrides:
- hashCodein class- java.lang.Object
 
 
- 
 
-