| net.sf.jasperreports.engine.JRLine
All known Subclasses: net.sf.jasperreports.engine.design.JRDesignLine, net.sf.jasperreports.engine.fill.JRFillLine, net.sf.jasperreports.engine.base.JRBaseLine,
JRLine | public interface JRLine extends JRGraphicElement(Code) | | An abstract representation of a graphic element representing a straight line.
author: Teodor Danciu (teodord@users.sourceforge.net) version: $Id: JRLine.java 1229 2006-04-19 10:27:35Z teodord $ |
Field Summary | |
final public static byte | DIRECTION_BOTTOM_UP Constant used for specifying that the line starts from the top and goes towards the bottom. | final public static byte | DIRECTION_TOP_DOWN Constant used for specifying that the line starts from the top and goes towards the bottom. |
Method Summary | |
public byte | getDirection() Gets the line direction. | public void | setDirection(byte direction) Sets the line direction. |
DIRECTION_BOTTOM_UP | final public static byte DIRECTION_BOTTOM_UP(Code) | | Constant used for specifying that the line starts from the top and goes towards the bottom.
|
DIRECTION_TOP_DOWN | final public static byte DIRECTION_TOP_DOWN(Code) | | Constant used for specifying that the line starts from the top and goes towards the bottom.
|
getDirection | public byte getDirection()(Code) | | Gets the line direction.
one of the direction constants |
setDirection | public void setDirection(byte direction)(Code) | | Sets the line direction.
Parameters: direction - one of the direction constants |
|
|