Package step.core.plans
Class PlanCompilationResult
- java.lang.Object
-
- step.core.plans.PlanCompilationResult
-
public class PlanCompilationResult extends Object
-
-
Constructor Summary
Constructors Constructor Description PlanCompilationResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<PlanCompilationError>getErrors()PlangetPlan()booleanisHasError()voidsetErrors(List<PlanCompilationError> errors)voidsetHasError(boolean hasError)voidsetPlan(Plan plan)
-
-
-
Method Detail
-
isHasError
public boolean isHasError()
-
setHasError
public void setHasError(boolean hasError)
-
getErrors
public List<PlanCompilationError> getErrors()
-
setErrors
public void setErrors(List<PlanCompilationError> errors)
-
getPlan
public Plan getPlan()
-
setPlan
public void setPlan(Plan plan)
-
-