org.sonar.sslr.parser
Class ParsingResult

java.lang.Object
  extended by org.sonar.sslr.parser.ParsingResult

public class ParsingResult
extends Object

Parsing result.

This class is not intended to be instantiated or subclassed by clients.

Since:
1.16

Constructor Summary
ParsingResult(InputBuffer inputBuffer, boolean matched, ParseNode parseTreeRoot, ParseError parseError)
           
 
Method Summary
 InputBuffer getInputBuffer()
           
 ParseError getParseError()
           
 ParseNode getParseTreeRoot()
           
 boolean isMatched()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ParsingResult

public ParsingResult(InputBuffer inputBuffer,
                     boolean matched,
                     @Nullable
                     ParseNode parseTreeRoot,
                     @Nullable
                     ParseError parseError)
Method Detail

getInputBuffer

public InputBuffer getInputBuffer()

isMatched

public boolean isMatched()

getParseError

public ParseError getParseError()

getParseTreeRoot

public ParseNode getParseTreeRoot()


Copyright © 2009-2014 SonarSource. All Rights Reserved.