| java.lang.Object org.apache.commons.jexl.util.introspection.Info
Info | public class Info (Code) | | Little class to carry in info such as template name, line and column for
information error reporting from the uberspector implementations
Taken from velocity for self-sufficiency.
since: 1.0 author: Geir Magnusson Jr. version: $Id: Info.java 398463 2006-04-30 23:48:42Z dion $ |
Constructor Summary | |
public | Info(String tn, int l, int c) Create info. |
Info | public Info(String tn, int l, int c)(Code) | | Create info.
Parameters: tn - template name Parameters: l - line number Parameters: c - column |
getColumn | public int getColumn()(Code) | | Gets the column number.
the column. |
getLine | public int getLine()(Code) | | Gets the line number.
line number. |
getTemplateName | public String getTemplateName()(Code) | | Gets the template name.
template name |
|
|