Class ClassFlowMethodMetaData
- java.lang.Object
-
- net.officefloor.plugin.clazz.flow.ClassFlowMethodMetaData
-
public class ClassFlowMethodMetaData extends java.lang.ObjectMeta-data of aMethodon aFlowInterface.- Author:
- Daniel Sagenschneider
-
-
Constructor Summary
Constructors Constructor Description ClassFlowMethodMetaData(java.lang.reflect.Method method, int flowIndex, boolean isParameter, boolean isFlowCallback)Initiate.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetFlowIndex()Obtains the index of theFlowto invoke for thisMethod.java.lang.reflect.MethodgetMethod()Obtains theMethod.booleanisFlowCallback()Flags ifFlowCallback.booleanisParameter()Indicates if parameter for theFlow.
-
-
-
Constructor Detail
-
ClassFlowMethodMetaData
public ClassFlowMethodMetaData(java.lang.reflect.Method method, int flowIndex, boolean isParameter, boolean isFlowCallback)Initiate.- Parameters:
method-Method.flowIndex- Index of theFlowto invoke for thisMethod.isParameter- Flag indicating if parameter for theFlow.isFlowCallback-trueif last parameter isFlowCallback.
-
-
Method Detail
-
getMethod
public java.lang.reflect.Method getMethod()
Obtains theMethod.- Returns:
Method.
-
getFlowIndex
public int getFlowIndex()
Obtains the index of theFlowto invoke for thisMethod.- Returns:
- Index of the
Flowto invoke for thisMethod.
-
isParameter
public boolean isParameter()
Indicates if parameter for theFlow.- Returns:
trueif parameter for theFlow.
-
isFlowCallback
public boolean isFlowCallback()
Flags ifFlowCallback.- Returns:
trueifFlowCallback.
-
-