Class ProcessMethodMetaData
- java.lang.Object
-
- net.officefloor.plugin.managedobject.clazz.ProcessMethodMetaData
-
public class ProcessMethodMetaData extends java.lang.Object
Meta-data for the invocation of aProcessState
.- Author:
- Daniel Sagenschneider
-
-
Constructor Summary
Constructors Constructor Description ProcessMethodMetaData(int processIndex, boolean isParameter, boolean isFlowCallback)
Instantiate.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getProcessIndex()
Obtains the index of theProcessState
invocation.boolean
isFlowCallback()
Indicates ifFlowCallback
to theProcessState
.boolean
isParameter()
Indicates if parameter to theProcessState
.
-
-
-
Constructor Detail
-
ProcessMethodMetaData
public ProcessMethodMetaData(int processIndex, boolean isParameter, boolean isFlowCallback)
Instantiate.- Parameters:
processIndex
- Obtains the index of theProcessState
invocation.isParameter
- Indicates if parameter to theProcessState
.isFlowCallback
- Indicates ifFlowCallback
for theProcessState
.
-
-
Method Detail
-
getProcessIndex
public int getProcessIndex()
Obtains the index of theProcessState
invocation.- Returns:
- Index of the
ProcessState
invocation.
-
isParameter
public boolean isParameter()
Indicates if parameter to theProcessState
.- Returns:
true
if parameter to theProcessState
.
-
isFlowCallback
public boolean isFlowCallback()
Indicates ifFlowCallback
to theProcessState
.- Returns:
true
ifFlowCallback
to theProcessState
.
-
-