/** * */ package at.gv.egiz.pdfas.api.sign.pos.axis; /** * An absolute positioned element. * @author wprinz */ public class AbsoluteAxisAlgorithm extends AxisAlgorithm { /** * The absolute positioning value on the axis. */ protected float absoluteValue = 0.0f; /** * Constructor. * @param absoluteValue The absolute positioning value on the axis. */ public AbsoluteAxisAlgorithm (float absoluteValue) { this.absoluteValue = absoluteValue; } /** * Returns absolute positioning value on the axis. * @return the absoluteValue Returns absolute positioning value on the axis. */ public float getAbsoluteValue() { return this.absoluteValue; } }