12 lines
263 B
Java
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);
|
|
}
|