Uses of Class
fr.umlv.tatoo.runtime.buffer.impl.LocationTracker

Packages that use LocationTracker
fr.umlv.tatoo.runtime.buffer.impl   
 

Uses of LocationTracker in fr.umlv.tatoo.runtime.buffer.impl
 

Methods in fr.umlv.tatoo.runtime.buffer.impl that return LocationTracker
 LocationTracker UTF8Wrapper.getLocationProvider()
           
 LocationTracker AbstractBufferWrapper.getLocationProvider()
          Returns the location tracker.
 

Methods in fr.umlv.tatoo.runtime.buffer.impl with parameters of type LocationTracker
static UTF8Wrapper<ByteBuffer> UTF8Wrapper.wrap(boolean direct, int capacity, int increment, int chunkSize, ReadableByteChannel readable, LocationTracker tracker)
          Construct a UTF8Wrapper used by the lexer to process the ReadableByteChannel.
static UTF8Wrapper<InputStream> UTF8Wrapper.wrap(InputStream inputStream, LocationTracker tracker)
          Constructs an UTF8Wrapper wrapper used by the lexer to process the InputStream.
static UTF8Wrapper<InputStream> UTF8Wrapper.wrap(int capacity, int increment, int chunkSize, InputStream inputStream, LocationTracker tracker)
          Construct a UTF8Wrapper used by the lexer to process the InputStream.
static UTF8Wrapper<ByteBuffer> UTF8Wrapper.wrap(ReadableByteChannel readable, LocationTracker tracker)
          Constructs an UTF8Wrapper wrapper used by the lexer to process the ReadableByteChannel.
 

Constructors in fr.umlv.tatoo.runtime.buffer.impl with parameters of type LocationTracker
AbstractBufferWrapper(LocationTracker locationTracker)
          Create a buffer with a location tracker.
ByteBufferWrapper(ByteBuffer buffer, LocationTracker tracker)
          Constructs a ByteBufferWrapper which wraps specified ByteBuffer.
CharBufferWrapper(CharBuffer buffer, LocationTracker tracker)
          Constructs a CharBufferWrapper which wraps specified CharBuffer.
CharSequenceWrapper(CharSequence seq, LocationTracker tracker)
          Constructs a CharSequenceWrapper which wraps specified CharSequence.
InputStreamWrapper(InputStream inputStream, LocationTracker tracker)
          Constructs an InputStreamWrapper wrapper used by the lexer to process the InputStream.
InputStreamWrapper(int capacity, int increment, int chunkSize, InputStream inputStream, LocationTracker tracker)
          Construct a InputStreamWrapper used by the lexer to process the InputStream.
ReadableByteChannelWrapper(boolean direct, int capacity, int increment, int chunkSize, ReadableByteChannel readable, LocationTracker tracker)
          Construct a ReadableByteChannelWrapper used by the lexer to process the ReadableByteChannel.
ReadableByteChannelWrapper(ReadableByteChannel readable, LocationTracker tracker)
          Constructs a ReadableByteChannelWrapper with default behavior.
ReadableWrapper(boolean direct, int capacity, int increment, int chunkSize, Readable readable, LocationTracker tracker)
          Construct a ReadableWrapper used by the lexer to process the Readable.
ReadableWrapper(Readable readable, LocationTracker tracker)
          Constructs a ReadableWrapper with default behavior.
ReaderWrapper(int capacity, int increment, int chunkSize, Reader reader, LocationTracker tracker)
          Construct a ReaderWrapper used by the lexer to process the Reader.
ReaderWrapper(Reader reader, LocationTracker tracker)
          Constructs a ReaderWrapper with default behavior.