1 28 package net.sf.jasperreports.engine.fill; 29 30 import net.sf.jasperreports.engine.JRConstants; 31 import net.sf.jasperreports.engine.JRPrintLine; 32 33 34 38 public class JRTemplatePrintLine extends JRTemplatePrintGraphicElement implements JRPrintLine 39 { 40 41 42 45 private static final long serialVersionUID = JRConstants.SERIAL_VERSION_UID; 46 47 48 51 public JRTemplatePrintLine(JRTemplateLine line) 52 { 53 super(line); 54 } 55 56 57 60 public byte getDirection() 61 { 62 return ((JRTemplateLine)this.template).getDirection(); 63 } 64 65 68 public void setDirection(byte direction) 69 { 70 } 71 72 73 } 74 | Popular Tags |