12 lines
230 B
Java
12 lines
230 B
Java
package net.sf.jasperreports.engine;
|
|
|
|
public interface JRBreak extends JRElement {
|
|
public static final byte TYPE_PAGE = 1;
|
|
|
|
public static final byte TYPE_COLUMN = 2;
|
|
|
|
byte getType();
|
|
|
|
void setType(byte paramByte);
|
|
}
|