1 28 package net.sf.jasperreports.crosstabs.design; 29 30 import net.sf.jasperreports.crosstabs.JRCellContents; 31 import net.sf.jasperreports.crosstabs.JRCrosstabRowGroup; 32 import net.sf.jasperreports.engine.JRConstants; 33 34 40 public class JRDesignCrosstabRowGroup extends JRDesignCrosstabGroup implements JRCrosstabRowGroup 41 { 42 private static final long serialVersionUID = JRConstants.SERIAL_VERSION_UID; 43 44 protected int width; 45 protected byte position = JRCellContents.POSITION_Y_TOP; 46 47 public JRDesignCrosstabRowGroup() 48 { 49 super(); 50 } 51 52 public byte getPosition() 53 { 54 return position; 55 } 56 57 58 64 public void setPosition(byte position) 65 { 66 this.position = position; 67 } 68 69 public int getWidth() 70 { 71 return width; 72 } 73 74 75 81 public void setWidth(int width) 82 { 83 this.width = width; 84 } 85 } 86 | Popular Tags |