package step.core; public class StepIntegerValue extends StepValue { private Integer val; public StepIntegerValue (Integer i) { val = i; } public Integer getVal() { return val; } public void setVal(Integer val) { this.val = val; } public String toString(String tab) { return val.toString(); } public void accept(StepAbstractRepositoryVisitor visitor) throws Exception { visitor.accept((StepIntegerValue)this); } }