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

12 lines
263 B
Java

package net.sf.jasperreports.engine;
public interface JRLine extends JRGraphicElement {
public static final byte DIRECTION_TOP_DOWN = 1;
public static final byte DIRECTION_BOTTOM_UP = 2;
byte getDirection();
void setDirection(byte paramByte);
}