Class ExecutableOperand
- java.lang.Object
-
- net.ssehub.easy.instantiation.core.model.buildlangModel.execOperand.ExecutableOperand
-
public class ExecutableOperand extends java.lang.ObjectFrontend access to the executable operands.- Author:
- Holger Eichelberger
-
-
Field Summary
Fields Modifier and Type Field Description private static IExecutableOperandType[]EXEC_OPERAND_TYPES
-
Constructor Summary
Constructors Constructor Description ExecutableOperand()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IExecutableOperandTypegetExecutableType(java.lang.Object object)Returns the executable operand type for the givenobject.static IExecutableOperandTypegetExecutableType(TypeDescriptor<?> type)Returns the executable operand type for the giventype.
-
-
-
Field Detail
-
EXEC_OPERAND_TYPES
private static final IExecutableOperandType[] EXEC_OPERAND_TYPES
-
-
Method Detail
-
getExecutableType
public static IExecutableOperandType getExecutableType(TypeDescriptor<?> type)
Returns the executable operand type for the giventype.- Parameters:
type- the type to return the executable type for- Returns:
- the executable operand type, null if there is none
- See Also:
IExecutableOperandType.sameType(TypeDescriptor)
-
getExecutableType
public static IExecutableOperandType getExecutableType(java.lang.Object object)
Returns the executable operand type for the givenobject.- Parameters:
object- the object to return the executable type for- Returns:
- the executable operand type, null if there is none
- See Also:
IExecutableOperandType.sameType(Object)
-
-