first commit
This commit is contained in:
35
hrmsEjb/net/sf/jasperreports/engine/JRPrintElement.java
Normal file
35
hrmsEjb/net/sf/jasperreports/engine/JRPrintElement.java
Normal file
@@ -0,0 +1,35 @@
|
||||
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();
|
||||
}
|
Reference in New Issue
Block a user