/** * */ package at.gv.egiz.pdfas.api.sign.pos.page; /** * The page is selected absolutely by giving the page number directly. * * @author wprinz */ public class AbsolutePageAlgorithm extends PageAlgorithm { /** * The page. */ protected int page = -1; /** * Constructor. * * @param page * The page. */ public AbsolutePageAlgorithm(int page) { this.page = page; } /** * @return the page */ public int getPage() { return this.page; } }