Package | Description |
---|---|
oracle.ide.dependency |
Provides information about the dependencies between files in an application.
|
oracle.ide.dependency.index |
Provides the ability to store and retrieve dependency information using the
index.
|
oracle.jdeveloper.db.dependency |
Modifier and Type | Interface and Description |
---|---|
interface |
SourceReference
A reference in a source file.
|
Modifier and Type | Class and Description |
---|---|
class |
IdReference
A reference to a declaration by ID.
|
Modifier and Type | Method and Description |
---|---|
Reference |
ReferenceProvider.getReference(Context context)
Get the reference for the given context, or null if there is no
reference in this context.
|
abstract Reference |
DependencyManager.getReference(Context context)
Get the reference for a context.
|
Modifier and Type | Method and Description |
---|---|
abstract java.util.Collection<Reference> |
DependencyManager.findReferences(Context context,
Scope scope,
Declaration declaration)
Find all references to a declaration.
|
java.util.Collection<? extends Reference> |
ReferenceProvider.findReferences(Context context,
Scope scope,
Declaration declaration,
ProgressIndicator progress)
Find all references to the given declaration that this provider knows
about.
|
abstract java.util.Collection<Reference> |
DependencyManager.findReferences(Context context,
Scope scope,
Declaration declaration,
ProgressIndicator progress)
Find all references to a declaration.
|
java.util.Collection<? extends Reference> |
ReferenceProvider.getReferences(Context context,
Node node)
Get all references for a Node.
|
abstract java.util.Collection<Reference> |
DependencyManager.getReferences(Context context,
Node node)
Get all references for a Node.
|
Modifier and Type | Class and Description |
---|---|
class |
IndexReference
A reference stored in the index.
|
Modifier and Type | Method and Description |
---|---|
Reference |
IndexReferenceProvider.getReference(Context context) |
Modifier and Type | Method and Description |
---|---|
java.util.Collection<? extends Reference> |
IndexReferenceProvider.findReferences(Context context,
Scope scope,
Declaration declaration,
ProgressIndicator progress) |
java.util.Collection<? extends Reference> |
IndexReferenceProvider.getReferences(Context context,
Node node) |
Modifier and Type | Method and Description |
---|---|
protected abstract java.util.Collection<QueryCriteria> |
IndexDeclarationProvider.getDeclarationCriteria(Context context,
Reference reference)
Get the index query criteria to use to search for the declaration
corresponding to a reference.
|
Modifier and Type | Interface and Description |
---|---|
interface |
DBObjectReference
Specialization of Reference for use when declaring a reference to a
DBObject that needs to be notified (via a DBObjectListener) of any
changes to that object.
|