Files
HRMS/hrmsEjb/net/sf/jasperreports/engine/JRBreak.java
2025-07-28 13:56:49 +05:30

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);
}