Uses of Class
nu.validator.source.Location

Packages that use Location
nu.validator.source   
 

Uses of Location in nu.validator.source
 

Fields in nu.validator.source declared as Location
private  Location Range.end
           
private  Location Range.loc
           
private static Location[] SourceCode.SOURCE_LOCATION_ARRAY_TYPE
           
private  Location Range.start
           
 

Fields in nu.validator.source with type parameters of type Location
private  SortedSet<Location> SourceCode.exactErrors
           
private  SortedSet<Location> SourceCode.rangeLasts
           
private  SortedSet<Location> SourceCode.reverseSortedLocations
           
 

Methods in nu.validator.source that return Location
(package private)  Location Range.getEnd()
          Returns the end.
(package private)  Location Range.getLoc()
          Returns the loc.
(package private)  Location Range.getStart()
          Returns the start.
 Location SourceCode.newLocatorLocation(int oneBasedLine, int oneBasedColumn)
           
(package private)  Location Location.next()
           
(package private)  Location Location.prev()
           
 Location SourceCode.rangeStartForRangeLast(Location rangeLast)
           
(package private)  Location Location.step(int offset)
           
 

Methods in nu.validator.source with parameters of type Location
 int Location.compareTo(Location o)
           
(package private)  void SourceCode.emitCharacter(Location location, SourceHandler handler)
           
(package private)  void SourceCode.emitContent(Location from, Location until, SourceHandler handler)
          Emits content between from a location (inclusive) until a location (exclusive).
 void SourceCode.exactError(Location location, SourceHandler extractHandler)
           
 boolean SourceCode.isWithinKnownSource(Location location)
           
 void SourceCode.rangeEndError(Location rangeStart, Location rangeLast, SourceHandler extractHandler)
           
 Location SourceCode.rangeStartForRangeLast(Location rangeLast)
           
 void SourceCode.rememberExactError(Location location)
           
 

Constructors in nu.validator.source with parameters of type Location
Range(Location start, Location end, Location loc)