Class StringLocation
- java.lang.Object
-
- org.apache.tapestry5.commons.internal.services.StringLocation
-
- All Implemented Interfaces:
Location
public final class StringLocation extends Object implements Location
Implementation ofLocation
used when the underlying resource isn't really known.
-
-
Constructor Summary
Constructors Constructor Description StringLocation(String description, int line)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getColumn()
Returns 0.int
getLine()
The line number within the resource, if known, or -1 otherwise.Resource
getResource()
Returns null; we don't know where the file really is (it's probably a class on the class path).String
toString()
-
-
-
Constructor Detail
-
StringLocation
public StringLocation(String description, int line)
-
-
Method Detail
-
getLine
public int getLine()
Description copied from interface:Location
The line number within the resource, if known, or -1 otherwise.
-
getResource
public Resource getResource()
Returns null; we don't know where the file really is (it's probably a class on the class path).- Specified by:
getResource
in interfaceLocation
-
-