1 28 package net.sf.jasperreports.engine; 29 30 31 38 public interface JRImage extends JRGraphicElement, JRAnchor, JRHyperlink, JRAlignment, JRBox 39 { 40 41 42 46 public static final byte SCALE_IMAGE_CLIP = 1; 47 48 53 public static final byte SCALE_IMAGE_FILL_FRAME = 2; 54 55 59 public static final byte SCALE_IMAGE_RETAIN_SHAPE = 3; 60 61 62 65 public static final byte ON_ERROR_TYPE_ERROR = 1; 66 67 70 public static final byte ON_ERROR_TYPE_BLANK = 2; 71 72 75 public static final byte ON_ERROR_TYPE_ICON = 3; 76 77 78 82 public byte getScaleImage(); 83 84 public Byte getOwnScaleImage(); 85 86 90 public void setScaleImage(byte scaleImage); 91 92 public void setScaleImage(Byte scaleImage); 93 94 100 public boolean isUsingCache(); 101 102 109 public Boolean isOwnUsingCache(); 110 111 119 public void setUsingCache(boolean isUsingCache); 120 121 129 public void setUsingCache(Boolean isUsingCache); 130 131 134 public boolean isLazy(); 135 136 142 public void setLazy(boolean isLazy); 143 144 148 public byte getOnErrorType(); 149 150 154 public void setOnErrorType(byte onErrorType); 155 156 160 public byte getEvaluationTime(); 161 162 166 public JRGroup getEvaluationGroup(); 167 168 172 public JRExpression getExpression(); 173 174 178 public JRBox getBox(); 179 180 181 } 182 | Popular Tags |