org.fife.ui.rsyntaxtextarea.parser
Interface ParseResult

All Known Implementing Classes:
DefaultParseResult

public interface ParseResult

The result from a Parser. This contains the section of lines parsed and any notices for that section.

Version:
1.0
Author:
Robert Futrell

Method Summary
 int getFirstLineParsed()
          Returns the first line parsed.
 int getLastLineParsed()
          Returns the first line parsed.
 java.util.List getNotices()
          Returns the notices for the parsed section.
 Parser getParser()
          Returns the parser that generated these notices.
 

Method Detail

getFirstLineParsed

int getFirstLineParsed()
Returns the first line parsed. All parser implementations should currently set this to 0 and parse the entire document.

Returns:
The first line parsed.
See Also:
getLastLineParsed()

getLastLineParsed

int getLastLineParsed()
Returns the first line parsed. All parser implementations should currently set this to the document's line count and parse the entire document.

Returns:
The last line parsed.
See Also:
getFirstLineParsed()

getNotices

java.util.List getNotices()
Returns the notices for the parsed section.

Returns:
The notices.

getParser

Parser getParser()
Returns the parser that generated these notices.

Returns:
The parser.


Copyright © 2003-2010. All Rights Reserved.