36 lines
590 B
Java
36 lines
590 B
Java
package net.sf.jasperreports.engine;
|
|
|
|
import java.awt.Color;
|
|
|
|
public interface JRPrintElement extends JRCommonElement, JRPropertiesHolder {
|
|
JROrigin getOrigin();
|
|
|
|
void setStyle(JRStyle paramJRStyle);
|
|
|
|
void setMode(byte paramByte);
|
|
|
|
void setMode(Byte paramByte);
|
|
|
|
int getX();
|
|
|
|
void setX(int paramInt);
|
|
|
|
int getY();
|
|
|
|
void setY(int paramInt);
|
|
|
|
int getWidth();
|
|
|
|
void setWidth(int paramInt);
|
|
|
|
int getHeight();
|
|
|
|
void setHeight(int paramInt);
|
|
|
|
void setForecolor(Color paramColor);
|
|
|
|
void setBackcolor(Color paramColor);
|
|
|
|
String getKey();
|
|
}
|