Package com.baulsupp.kolja.log.line

Examples of com.baulsupp.kolja.log.line.ParsingLineIndex


  public void setLineParser(LineParser lineParser) {
    this.lineParser = lineParser;
  }

  public LineIndex buildLineIndex(CharSequence buffer, LogEntryIndex entryIndex) {
    return new ParsingLineIndex(lineParser, entryIndex, buffer);
  }
View Full Code Here


  }
  public LineIndex buildLineIndex(CharSequence buffer, LogEntryIndex entryIndex) {
    RegexLineParser parser = getLineParser();

    return new ParsingLineIndex(parser, entryIndex, buffer);
  }
View Full Code Here

TOP

Related Classes of com.baulsupp.kolja.log.line.ParsingLineIndex

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.