package com.m20.absolute.schematron.ast.xpath; import java.math.BigDecimal; /** * A number. *

* The class implements the methods that access the value of the number. * * @author Adriana Alexandru */ public class Number extends PathExpr { private BigDecimal value; public void setValue(BigDecimal value) { this.value = value; } public BigDecimal getValue() { return value; } }