Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 28 package net.sf.jasperreports.engine; 29 30 import java.awt.Color ; 31 32 33 37 public interface JRPrintElement extends JRStyleContainer 38 { 39 40 41 44 public void setStyle(JRStyle style); 45 46 49 public byte getMode(); 50 51 54 public Byte getOwnMode(); 55 56 59 public void setMode(byte mode); 60 61 64 public void setMode(Byte mode); 65 66 69 public int getX(); 70 71 74 public void setX(int x); 75 76 79 public int getY(); 80 81 84 public void setY(int y); 85 86 89 public int getWidth(); 90 91 94 public void setWidth(int width); 95 96 99 public int getHeight(); 100 101 104 public void setHeight(int height); 105 106 109 public Color getForecolor(); 110 111 114 public Color getOwnForecolor(); 115 116 119 public void setForecolor(Color color); 120 121 124 public Color getBackcolor(); 125 126 129 public Color getOwnBackcolor(); 130 131 134 public void setBackcolor(Color color); 135 136 137 146 public String getKey(); 147 148 } 149
| Popular Tags
|