org.jfree.report.filter.templates
public class: HorizontalLineTemplate [javadoc |
source]
java.lang.Object
org.jfree.report.filter.templates.AbstractTemplate
org.jfree.report.filter.templates.HorizontalLineTemplate
All Implemented Interfaces:
Template
Defines a horizontal line template. The line always has the width of 100
points. This implementation is used to cover the common use of the line shape
element. Use the scaling feature of the shape element to adjust the size of
the line.
| Method from org.jfree.report.filter.templates.HorizontalLineTemplate Summary: |
|---|
|
getValue |
| Method from org.jfree.report.filter.templates.HorizontalLineTemplate Detail: |
public Object getValue(ExpressionRuntime runtime,
Element element) {
return new Line2D.Float(0, 0, 100, 0);
}
Returns the template value, an horizontal line. |