|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectantlr.Parser
antlr.LLkParser
org.argouml.uml.reveng.java.JavaRecognizer
This is the Java parser for reverse engineering Java source code to a UML model.
It is generated by the ANTLR parser generator (www.antlr.org). Antlr uses the java.g grammar file to generate the JavaRecogniser.java parser.
DO NOT MODIFY JavaRecogniser.java
If you need to modify how Argo parses Java files then:
Version tracking now done with following cvs ID:
$Id: java.g,v 1.18 2003/12/08 14:57:21 lepekhine Exp $ --------- old notes: -------------------------------------------
Java 1.2 Recognizer Run 'java Main' (this does not apply to ArgoUml!) Contributing authors: John Mitchell johnm@non.net Terence Parr parrt@magelang.com John Lilley jlilley@empathy.com Scott Stanchfield thetick@magelang.com Markus Mohnen mohnen@informatik.rwth-aachen.de Peter Williams pwilliams@netdynamics.com Version 1.00 December 9, 1997 -- initial release Version 1.01 December 10, 1997 fixed bug in octal def (0..7 not 0..8) Version 1.10 August 1998 (parrt) added tree construction fixed definition of WS,comments for mac,pc,unix newlines added unary plus Version 1.11 (Nov 20, 1998) Added "shutup" option to turn off last ambig warning. Fixed inner class def to allow named class defs as statements synchronized requires compound not simple statement add [] after builtInType DOT class in primaryExpression "const" is reserved but not valid..removed from modifiers Version 1.12 (Feb 2, 1999) Changed LITERAL_xxx to xxx in tree grammar. Updated java.g to use tokens {...} now for 2.6.0 (new feature). Version 1.13 (Apr 23, 1999) Didn't have (stat)? for else clause in tree parser. Didn't gen ASTs for interface extends. Updated tree parser too. Updated to 2.6.0. Version 1.14 (Jun 20, 1999) Allowed final/abstract on local classes. Removed local interfaces from methods Put instanceof precedence where it belongs...in relationalExpr It also had expr not type as arg; fixed it. Missing ! on SEMI in classBlock fixed: (expr) + "string" was parsed incorrectly (+ as unary plus). fixed: didn't like Object[].class in parser or tree parser Version 1.15 (Jun 26, 1999) Screwed up rule with instanceof in it. :( Fixed. Tree parser didn't like (expr).something; fixed. Allowed multiple inheritance in tree grammar. oops. Version 1.16 (August 22, 1999) Extending an interface built a wacky tree: had extra EXTENDS. Tree grammar didn't allow multiple superinterfaces. Tree grammar didn't allow empty var initializer: {} Version 1.17 (October 12, 1999) ESC lexer rule allowed 399 max not 377 max. java.tree.g didn't handle the expression of synchronized statements. BUG: Doesn't like boolean.class! class Test { public static void main( String args[] ) { if (boolean.class.equals(boolean.class)) { System.out.println("works"); } } } This grammar is in the PUBLIC DOMAIN
Field Summary | |
private Object |
_currentMethod
|
private StringBuffer |
_expressionBuffer
|
private boolean |
_inCompoundStatement
|
private JavaLexer |
_lexer
To get direct access to the lexer (for the javadoc comments), we store a reference to it. |
private String |
_methodBody
|
private Modeller |
_modeller
|
static String[] |
_tokenNames
|
static antlr.collections.impl.BitSet |
_tokenSet_0
|
static antlr.collections.impl.BitSet |
_tokenSet_1
|
static antlr.collections.impl.BitSet |
_tokenSet_10
|
static antlr.collections.impl.BitSet |
_tokenSet_11
|
static antlr.collections.impl.BitSet |
_tokenSet_12
|
static antlr.collections.impl.BitSet |
_tokenSet_13
|
static antlr.collections.impl.BitSet |
_tokenSet_14
|
static antlr.collections.impl.BitSet |
_tokenSet_15
|
static antlr.collections.impl.BitSet |
_tokenSet_16
|
static antlr.collections.impl.BitSet |
_tokenSet_17
|
static antlr.collections.impl.BitSet |
_tokenSet_18
|
static antlr.collections.impl.BitSet |
_tokenSet_19
|
static antlr.collections.impl.BitSet |
_tokenSet_2
|
static antlr.collections.impl.BitSet |
_tokenSet_20
|
static antlr.collections.impl.BitSet |
_tokenSet_21
|
static antlr.collections.impl.BitSet |
_tokenSet_3
|
static antlr.collections.impl.BitSet |
_tokenSet_4
|
static antlr.collections.impl.BitSet |
_tokenSet_5
|
static antlr.collections.impl.BitSet |
_tokenSet_6
|
static antlr.collections.impl.BitSet |
_tokenSet_7
|
static antlr.collections.impl.BitSet |
_tokenSet_8
|
static antlr.collections.impl.BitSet |
_tokenSet_9
|
private boolean |
_trackExpression
|
static short |
ACC_ABSTRACT
|
static short |
ACC_FINAL
|
static short |
ACC_INTERFACE
|
static short |
ACC_NATIVE
|
static short |
ACC_PRIVATE
|
static short |
ACC_PROTECTED
|
static short |
ACC_PUBLIC
|
static short |
ACC_STATIC
|
static short |
ACC_SUPER
|
static short |
ACC_SYNCHRONIZED
|
static short |
ACC_TRANSIENT
|
static short |
ACC_VOLATILE
|
private int |
level
Import details level |
Fields inherited from class antlr.LLkParser |
|
Fields inherited from class antlr.Parser |
astFactory, inputState, returnAST, tokenNames, tokenTypeToASTClassMap, traceDepth |
Constructor Summary | |
|
JavaRecognizer(antlr.ParserSharedInputState state)
|
|
JavaRecognizer(antlr.TokenBuffer tokenBuf)
|
protected |
JavaRecognizer(antlr.TokenBuffer tokenBuf,
int k)
|
|
JavaRecognizer(antlr.TokenStream lexer)
|
protected |
JavaRecognizer(antlr.TokenStream lexer,
int k)
|
Method Summary | |
void |
aCase()
|
(package private) void |
activateExpressionTracking()
Activate the tracking of expressions. |
void |
additiveExpression()
|
void |
andExpression()
|
void |
appendExpression(String expr)
Appends to a tracked expression. |
void |
argList()
|
void |
arrayInitializer()
|
void |
assignmentExpression()
|
String |
builtInType()
|
String |
builtInTypeSpec()
|
void |
casesGroup()
|
void |
caseSList()
|
void |
classBlock()
|
void |
classDefinition(String javadoc,
short modifiers)
|
String |
classTypeSpec()
|
void |
classVariableDeclarator(String javadoc,
short modifiers,
String varType)
Declaration of a class variable. |
void |
classVariableDefinitions(String javadoc,
short modifiers,
String returnType)
|
void |
compilationUnit(Modeller modeller,
JavaLexer lexer)
|
void |
compoundStatement()
|
void |
conditionalExpression()
|
String |
constant()
|
void |
ctorHead(short mods)
|
(package private) void |
deactivateExpressionTracking()
Deactivate the tracking of expressions. |
void |
declaration()
A declaration is the creation of a reference or primitive-type variable Create a separate Type/Var tree for each var in the var list. |
String |
declaratorBrackets()
|
void |
equalityExpression()
|
void |
exclusiveOrExpression()
|
void |
expression()
|
void |
expressionList()
|
void |
field()
|
void |
forCond()
|
void |
forInit()
|
void |
forIter()
|
(package private) String |
getBody()
get last method body |
String |
getExpression()
Get a tracked expression. |
private String |
getJavadocComment()
Get the last parsed javadoc comment from the lexer. |
(package private) Object |
getMethod()
get reference to the last added MOperation (here: method) |
(package private) Modeller |
getModeller()
|
void |
handler()
|
String |
identifier()
|
String |
identifierStar()
|
Vector |
implementsClause()
|
void |
importDefinition()
|
void |
inclusiveOrExpression()
|
void |
initializer()
|
void |
interfaceDefinition(String javadoc,
short modifiers)
|
Vector |
interfaceExtends()
|
(package private) boolean |
isInCompoundStatement()
check if we are inside a compoundStatement |
void |
logicalAndExpression()
|
void |
logicalOrExpression()
|
void |
match(int t)
|
private static long[] |
mk_tokenSet_0()
|
private static long[] |
mk_tokenSet_1()
|
private static long[] |
mk_tokenSet_10()
|
private static long[] |
mk_tokenSet_11()
|
private static long[] |
mk_tokenSet_12()
|
private static long[] |
mk_tokenSet_13()
|
private static long[] |
mk_tokenSet_14()
|
private static long[] |
mk_tokenSet_15()
|
private static long[] |
mk_tokenSet_16()
|
private static long[] |
mk_tokenSet_17()
|
private static long[] |
mk_tokenSet_18()
|
private static long[] |
mk_tokenSet_19()
|
private static long[] |
mk_tokenSet_2()
|
private static long[] |
mk_tokenSet_20()
|
private static long[] |
mk_tokenSet_21()
|
private static long[] |
mk_tokenSet_3()
|
private static long[] |
mk_tokenSet_4()
|
private static long[] |
mk_tokenSet_5()
|
private static long[] |
mk_tokenSet_6()
|
private static long[] |
mk_tokenSet_7()
|
private static long[] |
mk_tokenSet_8()
|
private static long[] |
mk_tokenSet_9()
|
short |
modifier()
|
short |
modifiers()
|
void |
multiplicativeExpression()
|
void |
newArrayDeclarator()
|
String |
newExpression()
object instantiation. |
void |
packageDefinition()
|
Vector |
parameterDeclaration()
|
Vector |
parameterDeclarationList()
|
String |
parameterDeclaratorBrackets()
|
short |
parameterModifier()
|
void |
postfixExpression()
|
String |
primaryExpression()
|
void |
relationalExpression()
|
String |
returnTypeBrackersOnEndOfMethodHead()
|
(package private) void |
setBody(String body)
set last method body |
(package private) void |
setIsInCompoundStatement(boolean flag)
set if we are inside a compoundStatement |
private void |
setLexer(JavaLexer lexer)
Set the lexer for this parser. |
(package private) void |
setMethod(Object method)
set reference to the last added MOperation (here: method) |
(package private) void |
setModeller(Modeller modeller)
|
void |
shiftExpression()
|
void |
statement()
|
String |
superClassClause()
|
void |
throwsClause()
|
void |
tryBlock()
|
String |
type()
|
void |
typeDefinition()
|
String |
typeSpec()
|
void |
unaryExpression()
|
void |
unaryExpressionNotPlusMinus()
|
void |
variableDeclarator(String javadoc,
short modifiers,
String varType)
Declaration of a variable. |
void |
variableDefinitions(String javadoc,
short modifiers,
String returnType)
|
String |
varInitializer()
|
Methods inherited from class antlr.LLkParser |
consume, LA, LT, traceIn, traceOut |
Methods inherited from class antlr.Parser |
addMessageListener, addParserListener, addParserMatchListener, addParserTokenListener, addSemanticPredicateListener, addSyntacticPredicateListener, addTraceListener, consumeUntil, consumeUntil, defaultDebuggingSetup, getAST, getASTFactory, getFilename, getInputState, getTokenName, getTokenNames, getTokenTypeToASTClassMap, isDebugMode, mark, match, matchNot, panic, removeMessageListener, removeParserListener, removeParserMatchListener, removeParserTokenListener, removeSemanticPredicateListener, removeSyntacticPredicateListener, removeTraceListener, reportError, reportError, reportWarning, rewind, setASTFactory, setASTNodeClass, setASTNodeType, setDebugMode, setFilename, setIgnoreInvalidDebugCalls, setInputState, setTokenBuffer, traceIndent |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public static final short ACC_PUBLIC
public static final short ACC_PRIVATE
public static final short ACC_PROTECTED
public static final short ACC_STATIC
public static final short ACC_FINAL
public static final short ACC_SUPER
public static final short ACC_VOLATILE
public static final short ACC_TRANSIENT
public static final short ACC_NATIVE
public static final short ACC_INTERFACE
public static final short ACC_ABSTRACT
private int level
public static final short ACC_SYNCHRONIZED
private JavaLexer _lexer
private Modeller _modeller
private Object _currentMethod
private String _methodBody
private boolean _trackExpression
private boolean _inCompoundStatement
private StringBuffer _expressionBuffer
public static final String[] _tokenNames
public static final antlr.collections.impl.BitSet _tokenSet_0
public static final antlr.collections.impl.BitSet _tokenSet_1
public static final antlr.collections.impl.BitSet _tokenSet_2
public static final antlr.collections.impl.BitSet _tokenSet_3
public static final antlr.collections.impl.BitSet _tokenSet_4
public static final antlr.collections.impl.BitSet _tokenSet_5
public static final antlr.collections.impl.BitSet _tokenSet_6
public static final antlr.collections.impl.BitSet _tokenSet_7
public static final antlr.collections.impl.BitSet _tokenSet_8
public static final antlr.collections.impl.BitSet _tokenSet_9
public static final antlr.collections.impl.BitSet _tokenSet_10
public static final antlr.collections.impl.BitSet _tokenSet_11
public static final antlr.collections.impl.BitSet _tokenSet_12
public static final antlr.collections.impl.BitSet _tokenSet_13
public static final antlr.collections.impl.BitSet _tokenSet_14
public static final antlr.collections.impl.BitSet _tokenSet_15
public static final antlr.collections.impl.BitSet _tokenSet_16
public static final antlr.collections.impl.BitSet _tokenSet_17
public static final antlr.collections.impl.BitSet _tokenSet_18
public static final antlr.collections.impl.BitSet _tokenSet_19
public static final antlr.collections.impl.BitSet _tokenSet_20
public static final antlr.collections.impl.BitSet _tokenSet_21
Constructor Detail |
protected JavaRecognizer(antlr.TokenBuffer tokenBuf, int k)
public JavaRecognizer(antlr.TokenBuffer tokenBuf)
protected JavaRecognizer(antlr.TokenStream lexer, int k)
public JavaRecognizer(antlr.TokenStream lexer)
public JavaRecognizer(antlr.ParserSharedInputState state)
Method Detail |
private void setLexer(JavaLexer lexer)
lexer
- The lexer for this parser.private String getJavadocComment()
Modeller getModeller()
void setModeller(Modeller modeller)
Object getMethod()
void setMethod(Object method)
String getBody()
void setBody(String body)
void setIsInCompoundStatement(boolean flag)
boolean isInCompoundStatement()
void activateExpressionTracking()
void deactivateExpressionTracking()
public String getExpression()
public void appendExpression(String expr)
public void match(int t) throws antlr.MismatchedTokenException, antlr.TokenStreamException
antlr.MismatchedTokenException
antlr.TokenStreamException
public final void compilationUnit(Modeller modeller, JavaLexer lexer) throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void packageDefinition() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void importDefinition() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void typeDefinition() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final String identifier() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final String identifierStar() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final short modifiers() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void classDefinition(String javadoc, short modifiers) throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void interfaceDefinition(String javadoc, short modifiers) throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void declaration() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final String typeSpec() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void variableDefinitions(String javadoc, short modifiers, String returnType) throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final short modifier() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final String classTypeSpec() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final String builtInTypeSpec() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final String builtInType() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final String type() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final String superClassClause() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final Vector implementsClause() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void classBlock() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final Vector interfaceExtends() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void field() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void ctorHead(short mods) throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void compoundStatement() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final Vector parameterDeclarationList() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final String returnTypeBrackersOnEndOfMethodHead() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void throwsClause() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void classVariableDefinitions(String javadoc, short modifiers, String returnType) throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void classVariableDeclarator(String javadoc, short modifiers, String varType) throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final String declaratorBrackets() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final String varInitializer() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void variableDeclarator(String javadoc, short modifiers, String varType) throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void initializer() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void arrayInitializer() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void expression() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final Vector parameterDeclaration() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final short parameterModifier() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final String parameterDeclaratorBrackets() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void statement() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void forInit() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void forCond() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void forIter() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void casesGroup() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void tryBlock() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void aCase() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void caseSList() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void expressionList() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void handler() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void assignmentExpression() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void conditionalExpression() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void logicalOrExpression() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void logicalAndExpression() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void inclusiveOrExpression() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void exclusiveOrExpression() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void andExpression() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void equalityExpression() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void relationalExpression() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void shiftExpression() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void additiveExpression() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void multiplicativeExpression() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void unaryExpression() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void unaryExpressionNotPlusMinus() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void postfixExpression() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final String primaryExpression() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final String newExpression() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void argList() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final String constant() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
public final void newArrayDeclarator() throws antlr.RecognitionException, antlr.TokenStreamException
antlr.RecognitionException
antlr.TokenStreamException
private static final long[] mk_tokenSet_0()
private static final long[] mk_tokenSet_1()
private static final long[] mk_tokenSet_2()
private static final long[] mk_tokenSet_3()
private static final long[] mk_tokenSet_4()
private static final long[] mk_tokenSet_5()
private static final long[] mk_tokenSet_6()
private static final long[] mk_tokenSet_7()
private static final long[] mk_tokenSet_8()
private static final long[] mk_tokenSet_9()
private static final long[] mk_tokenSet_10()
private static final long[] mk_tokenSet_11()
private static final long[] mk_tokenSet_12()
private static final long[] mk_tokenSet_13()
private static final long[] mk_tokenSet_14()
private static final long[] mk_tokenSet_15()
private static final long[] mk_tokenSet_16()
private static final long[] mk_tokenSet_17()
private static final long[] mk_tokenSet_18()
private static final long[] mk_tokenSet_19()
private static final long[] mk_tokenSet_20()
private static final long[] mk_tokenSet_21()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
ArgoUML © 1996-2004 (20050222) | ArgoUML Homepage | ArgoUML Developers' page | ArgoUML Cookbook |