org.drools.lang.dsl
Class DSLMapLexer

java.lang.Object
  extended by org.antlr.runtime.BaseRecognizer
      extended by org.antlr.runtime.Lexer
          extended by org.drools.lang.dsl.DSLMapLexer
All Implemented Interfaces:
org.antlr.runtime.TokenSource

public class DSLMapLexer
extends org.antlr.runtime.Lexer


Field Summary
static int COLON
           
static int COMMA
           
protected  org.drools.lang.dsl.DSLMapLexer.DFA4 dfa4
           
static int DOT
           
static int EOF
           
static int EOL
           
static int EQUALS
           
static int EscapeSequence
           
static int IdentifierPart
           
static int LEFT_CURLY
           
static int LEFT_SQUARE
           
static int LITERAL
           
static int MISC
           
static int RIGHT_CURLY
           
static int RIGHT_SQUARE
           
static int VT_ANY
           
static int VT_CONDITION
           
static int VT_CONSEQUENCE
           
static int VT_DSL_GRAMMAR
           
static int VT_ENTRY
           
static int VT_ENTRY_KEY
           
static int VT_ENTRY_VAL
           
static int VT_KEYWORD
           
static int VT_LITERAL
           
static int VT_META
           
static int VT_PATTERN
           
static int VT_QUAL
           
static int VT_SCOPE
           
static int VT_SPACE
           
static int VT_VAR_DEF
           
static int VT_VAR_REF
           
static int WS
           
 
Fields inherited from class org.antlr.runtime.Lexer
input
 
Fields inherited from class org.antlr.runtime.BaseRecognizer
DEFAULT_TOKEN_CHANNEL, HIDDEN, INITIAL_FOLLOW_STACK_SIZE, MEMO_RULE_FAILED, MEMO_RULE_UNKNOWN, NEXT_TOKEN_RULE_NAME, state
 
Constructor Summary
DSLMapLexer()
           
DSLMapLexer(org.antlr.runtime.CharStream input)
           
DSLMapLexer(org.antlr.runtime.CharStream input, org.antlr.runtime.RecognizerSharedState state)
           
 
Method Summary
 void emitErrorMessage(String msg)
          Override this method to not output mesages
 List<ParserError> getErrors()
           
 String getGrammarFileName()
           
 void mCOLON()
           
 void mCOMMA()
           
 void mDOT()
           
 void mEOL()
           
 void mEQUALS()
           
 void mEscapeSequence()
           
 void mIdentifierPart()
           
 void mLEFT_CURLY()
           
 void mLEFT_SQUARE()
           
 void mLITERAL()
           
 void mMISC()
           
 void mRIGHT_CURLY()
           
 void mRIGHT_SQUARE()
           
 void mTokens()
           
 void mWS()
           
 void reportError(org.antlr.runtime.RecognitionException ex)
           
 void synpred1_DSLMap_fragment()
           
 boolean synpred1_DSLMap()
           
 
Methods inherited from class org.antlr.runtime.Lexer
emit, emit, getCharErrorDisplay, getCharIndex, getCharPositionInLine, getCharStream, getErrorMessage, getLine, getSourceName, getText, match, match, matchAny, matchRange, nextToken, recover, reset, setCharStream, setText, skip, traceIn, traceOut
 
Methods inherited from class org.antlr.runtime.BaseRecognizer
alreadyParsedRule, beginResync, combineFollows, computeContextSensitiveRuleFOLLOW, computeErrorRecoverySet, consumeUntil, consumeUntil, displayRecognitionError, endResync, getBacktrackingLevel, getCurrentInputSymbol, getErrorHeader, getMissingSymbol, getNumberOfSyntaxErrors, getRuleInvocationStack, getRuleInvocationStack, getRuleMemoization, getRuleMemoizationCacheSize, getTokenErrorDisplay, getTokenNames, match, matchAny, memoize, mismatch, mismatchIsMissingToken, mismatchIsUnwantedToken, pushFollow, recover, recoverFromMismatchedSet, recoverFromMismatchedToken, toStrings, traceIn, traceOut
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

EOF

public static final int EOF
See Also:
Constant Field Values

VT_DSL_GRAMMAR

public static final int VT_DSL_GRAMMAR
See Also:
Constant Field Values

VT_ENTRY

public static final int VT_ENTRY
See Also:
Constant Field Values

VT_SCOPE

public static final int VT_SCOPE
See Also:
Constant Field Values

VT_CONDITION

public static final int VT_CONDITION
See Also:
Constant Field Values

VT_CONSEQUENCE

public static final int VT_CONSEQUENCE
See Also:
Constant Field Values

VT_KEYWORD

public static final int VT_KEYWORD
See Also:
Constant Field Values

VT_ANY

public static final int VT_ANY
See Also:
Constant Field Values

VT_META

public static final int VT_META
See Also:
Constant Field Values

VT_ENTRY_KEY

public static final int VT_ENTRY_KEY
See Also:
Constant Field Values

VT_ENTRY_VAL

public static final int VT_ENTRY_VAL
See Also:
Constant Field Values

VT_VAR_DEF

public static final int VT_VAR_DEF
See Also:
Constant Field Values

VT_VAR_REF

public static final int VT_VAR_REF
See Also:
Constant Field Values

VT_LITERAL

public static final int VT_LITERAL
See Also:
Constant Field Values

VT_PATTERN

public static final int VT_PATTERN
See Also:
Constant Field Values

VT_QUAL

public static final int VT_QUAL
See Also:
Constant Field Values

VT_SPACE

public static final int VT_SPACE
See Also:
Constant Field Values

EOL

public static final int EOL
See Also:
Constant Field Values

EQUALS

public static final int EQUALS
See Also:
Constant Field Values

LEFT_SQUARE

public static final int LEFT_SQUARE
See Also:
Constant Field Values

RIGHT_SQUARE

public static final int RIGHT_SQUARE
See Also:
Constant Field Values

LITERAL

public static final int LITERAL
See Also:
Constant Field Values

COMMA

public static final int COMMA
See Also:
Constant Field Values

COLON

public static final int COLON
See Also:
Constant Field Values

LEFT_CURLY

public static final int LEFT_CURLY
See Also:
Constant Field Values

RIGHT_CURLY

public static final int RIGHT_CURLY
See Also:
Constant Field Values

WS

public static final int WS
See Also:
Constant Field Values

EscapeSequence

public static final int EscapeSequence
See Also:
Constant Field Values

DOT

public static final int DOT
See Also:
Constant Field Values

IdentifierPart

public static final int IdentifierPart
See Also:
Constant Field Values

MISC

public static final int MISC
See Also:
Constant Field Values

dfa4

protected org.drools.lang.dsl.DSLMapLexer.DFA4 dfa4
Constructor Detail

DSLMapLexer

public DSLMapLexer()

DSLMapLexer

public DSLMapLexer(org.antlr.runtime.CharStream input)

DSLMapLexer

public DSLMapLexer(org.antlr.runtime.CharStream input,
                   org.antlr.runtime.RecognizerSharedState state)
Method Detail

reportError

public void reportError(org.antlr.runtime.RecognitionException ex)
Overrides:
reportError in class org.antlr.runtime.Lexer

getErrors

public List<ParserError> getErrors()

emitErrorMessage

public void emitErrorMessage(String msg)
Override this method to not output mesages

Overrides:
emitErrorMessage in class org.antlr.runtime.BaseRecognizer

getGrammarFileName

public String getGrammarFileName()
Overrides:
getGrammarFileName in class org.antlr.runtime.BaseRecognizer

mWS

public final void mWS()
               throws org.antlr.runtime.RecognitionException
Throws:
org.antlr.runtime.RecognitionException

mEOL

public final void mEOL()
                throws org.antlr.runtime.RecognitionException
Throws:
org.antlr.runtime.RecognitionException

mEscapeSequence

public final void mEscapeSequence()
                           throws org.antlr.runtime.RecognitionException
Throws:
org.antlr.runtime.RecognitionException

mLEFT_SQUARE

public final void mLEFT_SQUARE()
                        throws org.antlr.runtime.RecognitionException
Throws:
org.antlr.runtime.RecognitionException

mRIGHT_SQUARE

public final void mRIGHT_SQUARE()
                         throws org.antlr.runtime.RecognitionException
Throws:
org.antlr.runtime.RecognitionException

mLEFT_CURLY

public final void mLEFT_CURLY()
                       throws org.antlr.runtime.RecognitionException
Throws:
org.antlr.runtime.RecognitionException

mRIGHT_CURLY

public final void mRIGHT_CURLY()
                        throws org.antlr.runtime.RecognitionException
Throws:
org.antlr.runtime.RecognitionException

mEQUALS

public final void mEQUALS()
                   throws org.antlr.runtime.RecognitionException
Throws:
org.antlr.runtime.RecognitionException

mDOT

public final void mDOT()
                throws org.antlr.runtime.RecognitionException
Throws:
org.antlr.runtime.RecognitionException

mCOLON

public final void mCOLON()
                  throws org.antlr.runtime.RecognitionException
Throws:
org.antlr.runtime.RecognitionException

mCOMMA

public final void mCOMMA()
                  throws org.antlr.runtime.RecognitionException
Throws:
org.antlr.runtime.RecognitionException

mLITERAL

public final void mLITERAL()
                    throws org.antlr.runtime.RecognitionException
Throws:
org.antlr.runtime.RecognitionException

mMISC

public final void mMISC()
                 throws org.antlr.runtime.RecognitionException
Throws:
org.antlr.runtime.RecognitionException

mIdentifierPart

public final void mIdentifierPart()
                           throws org.antlr.runtime.RecognitionException
Throws:
org.antlr.runtime.RecognitionException

mTokens

public void mTokens()
             throws org.antlr.runtime.RecognitionException
Specified by:
mTokens in class org.antlr.runtime.Lexer
Throws:
org.antlr.runtime.RecognitionException

synpred1_DSLMap_fragment

public final void synpred1_DSLMap_fragment()
                                    throws org.antlr.runtime.RecognitionException
Throws:
org.antlr.runtime.RecognitionException

synpred1_DSLMap

public final boolean synpred1_DSLMap()


Copyright © 2001-2013 JBoss Inc.. All Rights Reserved.