1 28 package net.sf.jasperreports.crosstabs; 29 30 import java.awt.Color ; 31 32 import net.sf.jasperreports.engine.JRBox; 33 import net.sf.jasperreports.engine.JRElementGroup; 34 import net.sf.jasperreports.engine.JRStyleContainer; 35 36 51 public interface JRCellContents extends JRElementGroup, JRStyleContainer 52 { 53 56 public static final byte POSITION_X_LEFT = 1; 57 58 61 public static final byte POSITION_X_CENTER = 2; 62 63 66 public static final byte POSITION_X_RIGHT = 3; 67 68 71 public static final byte POSITION_X_STRETCH = 4; 72 73 76 public static final byte POSITION_Y_TOP = 1; 77 78 81 public static final byte POSITION_Y_MIDDLE = 2; 82 83 86 public static final byte POSITION_Y_BOTTOM = 3; 87 88 91 public static final byte POSITION_Y_STRETCH = 4; 92 93 96 public static final int NOT_CALCULATED = Integer.MIN_VALUE; 97 98 99 106 public Color getBackcolor(); 107 108 109 114 public JRBox getBox(); 115 116 117 123 public int getWidth(); 124 125 126 132 public int getHeight(); 133 134 135 141 public Byte getMode(); 142 } 143 | Popular Tags |