org.jfree.report.filter.templates
public class: VerticalLineTemplate [javadoc |
source]
java.lang.Object
org.jfree.report.filter.templates.AbstractTemplate
org.jfree.report.filter.templates.VerticalLineTemplate
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.VerticalLineTemplate Summary: |
|---|
|
getValue |
| Method from org.jfree.report.filter.templates.VerticalLineTemplate Detail: |
public Object getValue(ExpressionRuntime runtime,
Element element) {
return new Line2D.Float(0, 0, 0, 100);
}
Returns the template value, a vertical line. |