Package org.openl.rules.runtime
Class RuleInfo
- java.lang.Object
-
- org.openl.rules.runtime.RuleInfo
-
public class RuleInfo extends Object
The class what represents information about rule.
-
-
Constructor Summary
Constructors Constructor Description RuleInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetName()Class<?>[]getParamTypes()Class<?>getReturnType()inthashCode()voidsetName(String name)voidsetParamTypes(Class<?>[] paramTypes)voidsetReturnType(Class<?> returnType)
-
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
getReturnType
public Class<?> getReturnType()
-
setReturnType
public void setReturnType(Class<?> returnType)
-
getParamTypes
public Class<?>[] getParamTypes()
-
setParamTypes
public void setParamTypes(Class<?>[] paramTypes)
-
-