Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.1.0)

E13403-02

Uses of Class
oracle.javatools.parser.java.v1.symbol.JavaSymbol

Packages that use JavaSymbol
oracle.javatools.parser.java.v1   
oracle.javatools.parser.java.v1.symbol   
 

Uses of JavaSymbol in oracle.javatools.parser.java.v1
 

Methods in oracle.javatools.parser.java.v1 that return JavaSymbol
static JavaSymbol JavaParser.parse(ReadTextBuffer buffer, JavaParser.ParsingOptions options)
          This will parse the buffer with the provided options.
 

Methods in oracle.javatools.parser.java.v1 with parameters of type JavaSymbol
static boolean JavaUtilities.inJavaSymbol(int offset, JavaSymbol javaSymbol)
          Private utility which checks whether the given offset is located in the given JavaSymbol.
 

Uses of JavaSymbol in oracle.javatools.parser.java.v1.symbol
 

Subclasses of JavaSymbol in oracle.javatools.parser.java.v1.symbol
 class CatchClause
          The catch clause is separated from the other control statements because a variable declaration is required in the parentheses.
 class ClassBodySymbol
           
 class ClassSymbol
          The ClassSymbol represents a class or interface declaration.
 class CodeBlockSymbol
          The CodeBlockSymbol represents code blocks for methods and statements.
 class CodeElement
          A code element: a local class, a variable declaration, an expression, or a statement.
 class CommentSymbol
          The CommentSymbol subclasses off of NameSymbol purely to inherit the getValue and toString methods.
 class CommonRoot
           
 class ControlStatement
          ControlStatement represents all control statements and the catch clause of a try statement (though at parse time, it also represents other else and finally clauses).
 class CreatorExpressionSymbol
          CreatorExpressionSymbol represents all primaries and primary selectors that start with the 'new' token.
 class ErrorSymbol
           
 class ExpressionList
          The ExpressionList is an array of ExpressionSymbol's.
 class ExpressionSymbol
          The ExpressionSymbol is essentially the union of all the various operators and primaries.
 class FieldSymbol
          The FieldSymbol represents a class member declaration.
 class ForStatement
          Represents the ForStatement.
 class HasModifiers
           
 class ImportSymbol
          The ImportSymbol.
 class InnerClassSymbol
          An InnerClassSymbol is always a member of some enclosing class.
 class MemberSymbol
          The MemberSymbol represents a class member declaration.
 class MethodSymbol
           The MethodSymbol represents a method declaration.
 class NameSymbol
          The ImportSymbol.
 class PackageSymbol
          The PackageSymbol.
 class RootSymbol
          The RootSymbol represents the root node for a complete Java source file.
 class SqlStatement
          A statement can be only one of the following: an expression statement, a block, or a control statement.
 class StatementSymbol
          A statement can be only one of the following: an expression statement, a block, or a control statement.
 class TryStatement
          The TryStatement is a a ControlStatement with the additional functionality for retrieving multiple catch clauses.
 class TypeSymbol
          The TypeSymbol is used by MemberSymbol and VariableSymbol to represent the types.
 class VariableSymbol
          The VariableSymbol represents a variable declarator.
 

Methods in oracle.javatools.parser.java.v1.symbol that return JavaSymbol
 JavaSymbol JavaSymbolFactory.createAndFinishErrorSymbol(SyntaxToken token, CommonRoot root)
           
 JavaSymbol JavaSymbolFactory.createSymbol(int syntaxCode, int startOffset, int endOffset, JavaSymbol parent)
          Creates an empty symbol.
 JavaSymbol JavaSymbolFactory.createSymbol(SyntaxToken token, JavaSymbol parent)
          Creates an empty symbol.
 JavaSymbol JavaSymbol.getParent()
           
 

Methods in oracle.javatools.parser.java.v1.symbol with parameters of type JavaSymbol
 JavaSymbol JavaSymbolFactory.createSymbol(int syntaxCode, int startOffset, int endOffset, JavaSymbol parent)
          Creates an empty symbol.
 JavaSymbol JavaSymbolFactory.createSymbol(SyntaxToken token, JavaSymbol parent)
          Creates an empty symbol.
 void JavaSymbolFactory.finishSymbol(JavaSymbol symbol)
          Finishes a symbol's setup by looking at the symbol's syntax code and doing the appropriate wiring.
 void JavaSymbolFactory.finishSymbol(JavaSymbol symbol, SyntaxToken token)
          Finishes a symbol's setup by looking at the symbol's syntax code and doing the appropriate wiring.
 boolean JavaSymbolFactory.forceFinishSymbol(JavaSymbol symbol, int endOffset)
          Attempts to finish a symbol.
 


Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.1.0)

E13403-02

Copyright © 1997, 2009, Oracle. All rights reserved.