Package net.rootnode.loomchild.util.collections

Examples of net.rootnode.loomchild.util.collections.Buffer


   */
  public ReaderCharSequence(Reader reader, int length, int bufferSize,
      int lookahead) {
    this.reader = reader;
    this.lookahead = lookahead;
    this.buffer = new Buffer(bufferSize);
    this.position = 0;
    this.length = length;
    fillBuffer(-1);
  }
View Full Code Here

TOP

Related Classes of net.rootnode.loomchild.util.collections.Buffer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.