1 28 29 35 package net.sf.jasperreports.engine; 36 37 38 42 public interface JRPrintImage extends JRPrintGraphicElement, JRPrintAnchor, JRPrintHyperlink, JRAlignment, JRBox 43 { 44 45 46 49 public JRRenderable getRenderer(); 50 51 54 public void setRenderer(JRRenderable renderer); 55 56 59 public byte getScaleImage(); 60 61 64 public Byte getOwnScaleImage(); 65 66 69 public void setScaleImage(byte scaleImage); 70 71 74 public void setScaleImage(Byte scaleImage); 75 76 79 public byte getHorizontalAlignment(); 80 81 84 public Byte getOwnHorizontalAlignment(); 85 86 89 public void setHorizontalAlignment(byte horizontalAlignment); 90 91 94 public void setHorizontalAlignment(Byte horizontalAlignment); 95 96 99 public byte getVerticalAlignment(); 100 101 104 public Byte getOwnVerticalAlignment(); 105 106 109 public void setVerticalAlignment(byte verticalAlignment); 110 111 114 public void setVerticalAlignment(Byte verticalAlignment); 115 116 119 public boolean isLazy(); 120 121 124 public void setLazy(boolean isLazy); 125 126 129 public byte getOnErrorType(); 130 131 134 public void setOnErrorType(byte onErrorType); 135 136 139 public JRBox getBox(); 140 141 144 public void setBox(JRBox box); 145 146 147 } 148 | Popular Tags |