PTFTranslator.validateValueBoundaryExprType(exprDef.getOI());
vbDef.setExpressionDef(exprDef);
return vbDef;
}
else if (bndSpec instanceof RangeBoundarySpec) {
RangeBoundarySpec rBndSpec = (RangeBoundarySpec) bndSpec;
RangeBoundaryDef rbDef = new RangeBoundaryDef();
rbDef.setAmt(rBndSpec.getAmt());
rbDef.setDirection(rBndSpec.getDirection());
return rbDef;
} else if (bndSpec instanceof CurrentRowSpec) {
CurrentRowDef cbDef = new CurrentRowDef();
return cbDef;
}