001 package railo.commons.pdf; 002 003 public class PDFPageMark { 004 005 private int areaHeight; 006 private String htmlTemplate; 007 008 009 010 /** 011 * Constructor of the class 012 * @param areaHeight 013 * @param htmlTemplate 014 */ 015 public PDFPageMark(int areaHeight, String htmlTemplate) { 016 this.areaHeight = areaHeight; 017 this.htmlTemplate = htmlTemplate; 018 } 019 /** 020 * @return the areaHeight 021 */ 022 public int getAreaHeight() { 023 return areaHeight; 024 } 025 /** 026 * @param areaHeight the areaHeight to set 027 */ 028 public void setAreaHeight(int areaHeight) { 029 this.areaHeight = areaHeight; 030 } 031 /** 032 * @return the htmlTemplate 033 */ 034 public String getHtmlTemplate() { 035 return htmlTemplate; 036 } 037 /** 038 * @param htmlTemplate the htmlTemplate to set 039 */ 040 public void setHtmlTemplate(String htmlTemplate) { 041 this.htmlTemplate = htmlTemplate; 042 } 043 044 045 }