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 ofLocationused 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 intgetColumn()Returns 0.intgetLine()The line number within the resource, if known, or -1 otherwise.ResourcegetResource()Returns null; we don't know where the file really is (it's probably a class on the class path).StringtoString() 
 - 
 
- 
- 
Constructor Detail
- 
StringLocation
public StringLocation(String description, int line)
 
 - 
 
- 
Method Detail
- 
getLine
public int getLine()
Description copied from interface:LocationThe 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:
 getResourcein interfaceLocation
 
 - 
 
 -