Package | Description |
---|---|
oracle.jdeveloper.audit.project | |
oracle.jdeveloper.audit.transform |
The base classes for defining transformations on the Audit object
model.
|
Modifier and Type | Class and Description |
---|---|
class |
ProjectTransformContext
A
TransformContext for transforms that modify a project. |
Modifier and Type | Method and Description |
---|---|
TransformContext |
ProjectTransformAdapter.createContext(Transform transform,
Violation violation,
Location location) |
Modifier and Type | Method and Description |
---|---|
java.lang.Class<? extends TransformContext> |
ProjectTransformAdapter.getContextClass() |
Modifier and Type | Method and Description |
---|---|
void |
ProjectTransformAdapter.beginTransform(TransformContext context)
Begins a transform of this type.
|
void |
ProjectTransformAdapter.cancelTransform(TransformContext context) |
void |
ProjectTransformAdapter.endTransform(TransformContext context)
Ends a transform of this type.
|
Modifier and Type | Class and Description |
---|---|
class |
NullTransformContext |
class |
TextTransformContext |
Modifier and Type | Method and Description |
---|---|
abstract TransformContext |
TransformAdapter.createContext(Transform transform,
Violation violation,
Location location)
Creates a context for a transform over a violation.
|
TransformContext |
TextTransformAdapter.createContext(Transform transform,
Violation violation,
Location location) |
TransformContext |
NullTransformAdapter.createContext(Transform transform,
Violation violation,
Location location) |
TransformContext[] |
Transform.createContexts(Violation violation)
Creates the transform contexts for this transform, or null or an empty
array if the contexts cannot be created.
|
TransformContext[] |
CompositeTransform.createContexts(Violation violation) |
Modifier and Type | Method and Description |
---|---|
abstract java.lang.Class<? extends TransformContext> |
TransformAdapter.getContextClass()
Gets the class of the context created by
TransformAdapter.createContext(oracle.jdeveloper.audit.transform.Transform, oracle.jdeveloper.audit.service.Violation, oracle.jdeveloper.audit.model.Location) . |
java.lang.Class<? extends TransformContext> |
TextTransformAdapter.getContextClass() |
java.lang.Class<? extends TransformContext> |
NullTransformAdapter.getContextClass() |
Modifier and Type | Method and Description |
---|---|
abstract void |
TransformAdapter.beginTransform(TransformContext context)
Begins a transform of this type.
|
void |
TextTransformAdapter.beginTransform(TransformContext context)
Begins a transform of this type.
|
void |
NullTransformAdapter.beginTransform(TransformContext context)
Begins a transform of this type.
|
void |
TransformAdapter.beginTransform(TransformContext context,
TransformSequenceContext sequenceContext)
Begins a transform of this type within a sequence of transforms of this
type.
|
java.lang.String |
Transform.boundLabel(TransformContext context)
Gets the localized label for this transform, bound in the context of a
specific issue.
|
abstract void |
TransformAdapter.cancelTransform(TransformContext context)
Cancels a transform of this type.
|
void |
TextTransformAdapter.cancelTransform(TransformContext context)
Cancels a transform of this type.
|
void |
NullTransformAdapter.cancelTransform(TransformContext context)
Cancels a transform of this type.
|
abstract void |
TransformAdapter.endTransform(TransformContext context)
Ends a transform of this type.
|
void |
TextTransformAdapter.endTransform(TransformContext context)
Ends a transform of this type.
|
void |
NullTransformAdapter.endTransform(TransformContext context)
Ends a transform of this type.
|
java.util.Collection<Location> |
TransformAdapter.getHighlightRegions(TransformContext context)
Gets the highlight regions set by the apply method of a transform for its
model, or an empty list if none.
|
java.lang.Boolean |
TransformAdapter.makeTransformable(TransformContext context)
Makes a transform location transformable if not already so.
|
void |
TransformAdapter.setPredecessorApplyData(TransformContext context,
java.lang.Object applyData)
Sets the predecessor apply data for a transform.
|