Class Info
- java.lang.Object
-
- org.apache.velocity.util.introspection.Info
-
- Direct Known Subclasses:
InvalidReferenceInfo
public class Info extends Object
Little class to carry in info such as template name, line and column for information error reporting from the uberspector implementations- Version:
- $Id$
- Author:
- Geir Magnusson Jr.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getColumn()
int
getLine()
String
getTemplateName()
String
toString()
Formats a textual representation of this object asSOURCE [line X, column Y]
.
-
-
-
Method Detail
-
getTemplateName
public String getTemplateName()
- Returns:
- The template name.
-
getLine
public int getLine()
- Returns:
- The line number.
-
getColumn
public int getColumn()
- Returns:
- The column number.
-
-