10 lines
188 B
Java
10 lines
188 B
Java
package net.sf.jasperreports.engine;
|
|
|
|
import java.awt.Color;
|
|
|
|
public interface JRPenContainer extends JRStyleContainer {
|
|
Float getDefaultLineWidth();
|
|
|
|
Color getDefaultLineColor();
|
|
}
|