20 lines
302 B
Java
20 lines
302 B
Java
package net.sf.jasperreports.engine;
|
|
|
|
import java.awt.Color;
|
|
|
|
public interface JRCommonElement extends JRStyleContainer {
|
|
String getKey();
|
|
|
|
byte getMode();
|
|
|
|
Byte getOwnMode();
|
|
|
|
Color getForecolor();
|
|
|
|
Color getOwnForecolor();
|
|
|
|
Color getBackcolor();
|
|
|
|
Color getOwnBackcolor();
|
|
}
|