/** * */ package at.gv.egiz.pdfas.api.sign.pos.axis; import java.io.Serializable; /** * An absolute positioned element. * @author wprinz */ public class AbsoluteAxisAlgorithm extends AxisAlgorithm implements Serializable { /** * */ private static final long serialVersionUID = 1L; /** * 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; } }