Package org.drools.mvel.builder
Class MVELAnalysisResult
- java.lang.Object
-
- org.drools.mvel.builder.MVELAnalysisResult
-
- All Implemented Interfaces:
org.drools.compiler.compiler.AnalysisResult
public class MVELAnalysisResult extends Object implements org.drools.compiler.compiler.AnalysisResult
An analysis result implementation for the MVEL dialect
-
-
Constructor Summary
Constructors Constructor Description MVELAnalysisResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.drools.compiler.compiler.BoundIdentifiersgetBoundIdentifiers()Set<String>getIdentifiers()Set<String>getLocalVariables()Map<String,Class<?>>getMvelVariables()Set<String>getNotBoundedIdentifiers()Class<?>getReturnType()booleanisTypesafe()voidsetBoundIdentifiers(org.drools.compiler.compiler.BoundIdentifiers boundIdentifiers)voidsetIdentifiers(Set<String> identifiers)voidsetMvelVariables(Map<String,Class<?>> mvelVariables)voidsetNotBoundedIdentifiers(Set<String> notBoundedIdentifiers)voidsetReturnType(Class<?> returnType)voidsetTypesafe(boolean typesafe)StringtoString()
-
-
-
Method Detail
-
getBoundIdentifiers
public org.drools.compiler.compiler.BoundIdentifiers getBoundIdentifiers()
- Specified by:
getBoundIdentifiersin interfaceorg.drools.compiler.compiler.AnalysisResult
-
setBoundIdentifiers
public void setBoundIdentifiers(org.drools.compiler.compiler.BoundIdentifiers boundIdentifiers)
-
getIdentifiers
public Set<String> getIdentifiers()
- Specified by:
getIdentifiersin interfaceorg.drools.compiler.compiler.AnalysisResult
-
getLocalVariables
public Set<String> getLocalVariables()
- Specified by:
getLocalVariablesin interfaceorg.drools.compiler.compiler.AnalysisResult
-
getNotBoundedIdentifiers
public Set<String> getNotBoundedIdentifiers()
- Specified by:
getNotBoundedIdentifiersin interfaceorg.drools.compiler.compiler.AnalysisResult
-
getReturnType
public Class<?> getReturnType()
- Specified by:
getReturnTypein interfaceorg.drools.compiler.compiler.AnalysisResult
-
setReturnType
public void setReturnType(Class<?> returnType)
-
isTypesafe
public boolean isTypesafe()
-
setTypesafe
public void setTypesafe(boolean typesafe)
-
-