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;
}
throw new SemanticException("Unknown Boundary: " + bndSpec);
}