| 
Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference 11g Release 1 (11.1.1.5.0) E13403-06  | 
|||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use JavaElement | |
|---|---|
| oracle.javatools.parser.java.v2.classfile | The parser's class file reader. | 
| oracle.javatools.parser.java.v2.common | Classes common to model implementations. | 
| oracle.javatools.parser.java.v2.model | The parser model API. | 
| oracle.javatools.parser.java.v2.model.doc | The parser model API for doc elements. | 
| oracle.javatools.parser.java.v2.model.expression | The parser model API for expressions. | 
| oracle.javatools.parser.java.v2.model.statement | The parser model API for statements. | 
| oracle.javatools.parser.java.v2.util | Various utilities for use with the parser. | 
| oracle.javatools.parser.java.v2.util.filter | Filter utilities for use with the parser. | 
| oracle.jdeveloper.java.insight | |
| oracle.jdeveloper.java.provider | Public implementations of the JavaFileProvider interface. | 
| Uses of JavaElement in oracle.javatools.parser.java.v2.classfile | 
|---|
| Classes in oracle.javatools.parser.java.v2.classfile that implement JavaElement | |
|---|---|
 class | 
oracle.javatools.parser.java.v2.classfile.ClClass | 
| Uses of JavaElement in oracle.javatools.parser.java.v2.common | 
|---|
| Classes in oracle.javatools.parser.java.v2.common that implement JavaElement | |
|---|---|
 class | 
AbstractAnnotationTODO: Is this class really necessary?  | 
 class | 
AbstractClassAn abstract implementation of JavaClass.  | 
 class | 
AbstractElementA generic implementation of JavaElement with stubs for most of the methods.  | 
 class | 
AbstractFieldAn abstract implementation of JavaField.  | 
 class | 
AbstractMethodAn abstract implementation of JavaMethod.  | 
 class | 
AbstractPackageAn abstract implementation of JavaPackage.  | 
 class | 
AbstractTypeAn abstract implementation of JavaType.  | 
 class | 
AbstractVariableAn abstract implementation of JavaVariable.  | 
 class | 
CastedMethodA "casted method" represents a method invocation followed by a type cast.  | 
 class | 
PrimitiveTypeRepresents a primitive type JavaClass.  | 
 class | 
QuickComponentA QuickComponent is a special type of JavaVariable that refers to an annotation member (method!).  | 
 class | 
QuickHasNameA lightweight object that knows how to retrieve its resolved type when asked for it.  | 
 class | 
QuickHasTypeA lightweight object that knows how to retrieve its resolved type when asked for it.  | 
 class | 
QuickLocalVariableA light-weight implementation of JavaLocalVariable, particularly useful for constructing formal parameter objects for use with QuickMethod.  | 
 class | 
QuickMethodA lightweight implementation of JavaMethod.  | 
 class | 
SignatureHasTypeThis JavaHasType gets its name in that it's used for signature parsing.  | 
 class | 
ValueRepresents a value in the java language.  | 
 class | 
WrapperClassSkeleton implementation of an object wrapping a class.  | 
 class | 
WrapperFieldSkeleton implementation of an object wrapping a field.  | 
 class | 
WrapperLocalVariableSkeleton implementation of an object wrapping a local variable.  | 
 class | 
WrapperMethodSkeleton implementation of an object wrapping a method.  | 
 class | 
WrapperPackageSkeleton implementation of an object wrapping a class.  | 
| Fields in oracle.javatools.parser.java.v2.common declared as JavaElement | |
|---|---|
protected  JavaElement | 
QuickLocalVariable.ownerCannot require that it be final or set through the constructor because formal parameter instances are often constructed before the owning method instance.  | 
| Methods in oracle.javatools.parser.java.v2.common that return JavaElement | |
|---|---|
 JavaElement | 
AbstractVariable.getOwner() | 
 JavaElement | 
QuickLocalVariable.getOwner() | 
abstract  JavaElement | 
AbstractElement.getOwner() | 
 JavaElement | 
QuickHasType.getOwner() | 
abstract  JavaElement | 
AbstractAnnotation.getOwner() | 
 JavaElement | 
WrapperMethod.getOwner() | 
 JavaElement | 
AbstractMethod.getOwner() | 
 JavaElement | 
WrapperLocalVariable.getOwner() | 
 JavaElement | 
QuickHasName.getOwner() | 
 JavaElement | 
WrapperField.getOwner() | 
 JavaElement | 
SignatureHasType.getOwner() | 
 JavaElement | 
AbstractType.getOwner() | 
 JavaElement | 
AbstractPackage.getOwner() | 
 JavaElement | 
AbstractField.getOwner() | 
 JavaElement | 
QuickComponent.getOwner() | 
 JavaElement | 
WrapperClass.getOwner() | 
static JavaElement | 
CommonUtilities.locateByUniqueIdentifier(java.lang.String uniqueIdentifier, JavaProvider provider)This will work for packages, classes, methods, and fields.  | 
| Methods in oracle.javatools.parser.java.v2.common with parameters of type JavaElement | |
|---|---|
static SourceElement | 
CommonUtilities.getSourceElement(JavaElement target, SourceFile searchSpace) | 
 void | 
QuickLocalVariable.setOwner(JavaElement o) | 
 void | 
QuickComponent.setOwner(JavaElement owner) | 
| Uses of JavaElement in oracle.javatools.parser.java.v2.model | 
|---|
| Subinterfaces of JavaElement in oracle.javatools.parser.java.v2.model | |
|---|---|
 interface | 
CompiledImportA traditional narrow import declaration imports a single type.  | 
 interface | 
JavaAnnotationAn instance of an annotation type.  | 
 interface | 
JavaClassA JavaClass is mostly the equivalent of java/lang/Class.  | 
 interface | 
JavaFieldThe JavaField is the compiled representation of a java field.  | 
 interface | 
JavaFileA compilation unit.  | 
 interface | 
JavaHasAnnotationsAll runtime annotations are provided, both visible and invisible.  | 
 interface | 
JavaHasNameA JavaHasName object has a name.  | 
 interface | 
JavaHasTypeA JavaHasType object has a descriptor and a signature.  | 
 interface | 
JavaIsGenericA generic declaration declares type parameters.  | 
 interface | 
JavaLocalVariableA compile-time local variable (or formal parameter).  | 
 interface | 
JavaMemberThe JavaField is the compiled representation of a java field.  | 
 interface | 
JavaMethodThe JavaMethod is the compiled representation of a java method or constructor, including the implicit <clinit> method.  | 
 interface | 
JavaPackageThe JavaType is the compiled representation of a JavaType.  | 
 interface | 
JavaTypeJavaType is the common base interface for JavaClass, JavaTypeVariable, and JavaWildcardType.  | 
 interface | 
JavaTypeVariableThe TypeVariable is a new concept in jdk 1.5.  | 
 interface | 
JavaVariableThe JavaVariable is the compiled representation of a local variable, including formal parameters.  | 
 interface | 
JavaWildcardTypeThe WildcardType is a new concept in jdk 1.5.  | 
 interface | 
SourceAnnotationAn annotation (not to be confused with annotation type).  | 
 interface | 
SourceClassA SourceClass is the syntactic (aka symbolic) representation of a java class: classes, enums, interfaces, and annotation types.  | 
 interface | 
SourceClassInitializerThe SourceMember represents a member declaration for a type. | 
 interface | 
SourceEnumConstantAn enum constant.  | 
 interface | 
SourceFieldDeclarationA field (or enum constant) declaration.  | 
 interface | 
SourceFieldVariableA field variable.  | 
 interface | 
SourceFileThe SourceFile represents the root node for a complete Source source file.  | 
 interface | 
SourceFormalParameterA formal parameter.  | 
 interface | 
SourceImportAn import declaration.  | 
 interface | 
SourceLocalVariableA local variable or formal parameter.  | 
 interface | 
SourceMemberThe SourceMember represents a member declaration for a type. | 
 interface | 
SourceMemberVariableA field (or enum constant) variable.  | 
 interface | 
SourceMethodA SourceMethod is the syntactic (aka symbolic) representation of a java method or constructor declaration.  | 
 interface | 
SourceNameA name.  | 
 interface | 
SourceTypeArgumentA type argument for a type reference.  | 
 interface | 
SourceTypeParameterA type parameter.  | 
 interface | 
SourceTypeReferenceA type reference.  | 
 interface | 
SourceVariableA SourceVariable is the syntactic (aka symbolic) representation of a java variable, including: field variables, enum constant variables, local variables, and formal parameters.  | 
| Fields in oracle.javatools.parser.java.v2.model declared as JavaElement | |
|---|---|
static JavaElement[] | 
JavaElement.EMPTY_ARRAY | 
| Methods in oracle.javatools.parser.java.v2.model that return JavaElement | |
|---|---|
 JavaElement | 
SourceElement.getCompiledObject()Gets the compiled object associated with this element.  | 
 JavaElement | 
JavaElement.getOwner()TODO: Document me!  | 
| Uses of JavaElement in oracle.javatools.parser.java.v2.model.doc | 
|---|
| Subinterfaces of JavaElement in oracle.javatools.parser.java.v2.model.doc | |
|---|---|
 interface | 
CompiledDocReferenceA CompiledDocReference is the compiled interface for a doc comment reference to a type, method, constructor, field, or parameter. | 
 interface | 
SourceDocReferenceA SourceDocReference represents the Java element reference in @exception, @link, @linkplain, @param, @see, @serialField, @throws, and two-argument @value> tags. | 
 interface | 
SourceDocTagNameA SourceDocTextFragment represents a text fragment within a SourceDocDescription. | 
| Uses of JavaElement in oracle.javatools.parser.java.v2.model.expression | 
|---|
| Subinterfaces of JavaElement in oracle.javatools.parser.java.v2.model.expression | |
|---|---|
 interface | 
CompiledAccessExpressionThe type of a compiled access expression.  | 
 interface | 
CompiledExpressionThe type of a compiled expression.  | 
 interface | 
CompiledInvokeExpressionThe type of a compiled invocation expression.  | 
 interface | 
CompiledSelfVariableThe type of a compiled self variable.  | 
 interface | 
CompiledTmpVariableThe type of a compiled tmp variable.  | 
 interface | 
SourceAnnotationExpressionAn AnnotationExpression is a final expression representing an annotation that is also an expression operand (and therefore must be a subclass of Expression).  | 
 interface | 
SourceArrayAccessExpressionAn ArrayAccessExpression is a final expression representing an array access expression.  | 
 interface | 
SourceAssignmentExpressionAn AssignmentExpression is a final expression representing infix operations that are assignments.  | 
 interface | 
SourceDereferenceExpressionA SourceDereferenceExpression is a common base expression representing an operator that performs a dereference.  | 
 interface | 
SourceDotExpressionA DotExpression is a final expression representing a selector.  | 
 interface | 
SourceExpressionThe SourceExpression is essentially the union of all the various operators and primaries.  | 
 interface | 
SourceInfixExpressionAn InfixExpression is a final expression representing an infix operation that is not an assignment.  | 
 interface | 
SourceInvokeExpressionA SourceInvokeExpression is a common base expression representing any invocation expression.  | 
 interface | 
SourceListExpressionA ListExpression is a final expression representing non-operation expressions that have a variable number of operands.  | 
 interface | 
SourceLiteralExpressionA LiteralExpression is a final expression representing a lexical literal.  | 
 interface | 
SourceMethodCallExpressionA MethodCallExpression is a final expression representing a method invocation or an explicit constructor invocation.  | 
 interface | 
SourceNewArrayExpressionAn ArrayAccessExpression is a final expression representing an array access expression.  | 
 interface | 
SourceNewClassExpressionA ClassCreatorExpression is a final expression representing an instance creation expression.  | 
 interface | 
SourceOperatorExpressionAn OperatorExpression is a common base expression representing a multi-operand expression that performs an operation.  | 
 interface | 
SourceQuestionExpressionA QuestionExpression is a final expression representing the ternary operator x? x: x.  | 
 interface | 
SourceSimpleNameExpressionA SimpleNameExpression is a final expression representing an unqualified name access.  | 
 interface | 
SourceTypecastExpressionA TypecastExpression is a final expression representing a type cast.  | 
 interface | 
SourceTypeExpressionA TypeExpression is a final expression representing a type that is also an expression operand (and therefore must be a subclass of Expression).  | 
 interface | 
SourceUnaryExpressionA UnaryExpression is a final expression representing the prefix and postfix operators but not the typecast operator.  | 
 interface | 
SourceWrapperExpressionA WrapperExpression is a final expression that represents wrapping constructs such as parentheses and brackets.  | 
| Uses of JavaElement in oracle.javatools.parser.java.v2.model.statement | 
|---|
| Subinterfaces of JavaElement in oracle.javatools.parser.java.v2.model.statement | |
|---|---|
 interface | 
CompiledStatementLabelThe compile-model declaration of a statement label.  | 
 interface | 
SourceStatementLabelA label on a labeled statement.  | 
| Uses of JavaElement in oracle.javatools.parser.java.v2.util | 
|---|
| Methods in oracle.javatools.parser.java.v2.util with parameters of type JavaElement | |
|---|---|
 void | 
Usages.handleUsage(oracle.javatools.parser.java.v2.internal.symbol.Sym cookie, JavaElement result)For internal use only.  | 
| Uses of JavaElement in oracle.javatools.parser.java.v2.util.filter | 
|---|
| Methods in oracle.javatools.parser.java.v2.util.filter with parameters of type JavaElement | |
|---|---|
 boolean | 
JavaFilter.accepts(JavaElement element) | 
 boolean | 
AssignableFilter.accepts(JavaElement element) | 
 boolean | 
AnnotationFilter.accepts(JavaElement element) | 
 boolean | 
OrFilter.accepts(JavaElement element) | 
 boolean | 
DeprecatedFilter.accepts(JavaElement element) | 
 boolean | 
AndFilter.accepts(JavaElement element) | 
| Uses of JavaElement in oracle.jdeveloper.java.insight | 
|---|
| Constructors in oracle.jdeveloper.java.insight with parameters of type JavaElement | |
|---|---|
AnnotationElementValueInsightDataItem(JavaElement javaElement)Create an instance that is backed by a JavaElement  | 
|
| Uses of JavaElement in oracle.jdeveloper.java.provider | 
|---|
| Classes in oracle.jdeveloper.java.provider that implement JavaElement | |
|---|---|
protected  class | 
BaseFileProvider.BaseClassOur ClCass implementation to override handling of inner class searching and source file hints for SourceClass searching.  | 
protected  class | 
BaseFileProvider.BasePackageThis is a basic wrapper implementation of JavaPackage. | 
  | 
Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference 11g Release 1 (11.1.1.5.0) E13403-06  | 
|||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||