Oracle Fusion Middleware Java API Reference for Oracle Extension SDK
11g Release 2 (11.1.2.1.0)

E17493-02

Uses of Class
oracle.jdeveloper.audit.model.ModelAdapter

Packages that use ModelAdapter
oracle.jdeveloper.audit.analyzer The base classes for writing analyzers. 
oracle.jdeveloper.audit.model The base classes for defining the Audit object model. 
oracle.jdeveloper.audit.service The API classes for invoking Audit programatically, and a few Audit common API classes. 
oracle.jdeveloper.audit.transform The base classes for defining transformations on the Audit object model. 
oracle.jdevimpl.audit.core   
oracle.jdevimpl.audit.log   
oracle.jdevimpl.audit.model   
 

Uses of ModelAdapter in oracle.jdeveloper.audit.analyzer
 

Methods in oracle.jdeveloper.audit.analyzer with type parameters of type ModelAdapter
<T extends ModelAdapter>
ModelAdapter
AuditContext.getModel(java.lang.Class<T> type, java.net.URL url)
          Gets the model adapter for the model corresponding to a URL in the workspace and project currently being traversed.
<T extends ModelAdapter>
ModelAdapter
AuditContext.getModel(java.lang.Class<T> type, java.net.URL url, Project project, Workspace workspace)
          Gets the model adapter for the model corresponding to a workspace, project, and url.
<T extends ModelAdapter>
ModelAdapter
AuditContext.getModelAdapter(java.lang.Class<T> type, java.net.URL url)
          Deprecated. Use AuditContext.getModel(Class, URL)
<T extends ModelAdapter>
ModelAdapter
AuditTaskContext.getModelAdapter(java.lang.Class<T> type, java.net.URL url, Project project, Workspace workspace)
          Gets the adapter for the model corresponding to a workspace, project, and url.
<T extends ModelAdapter>
ModelAdapter
AuditContext.getModelAdapter(java.lang.Class<T> type, java.net.URL url, Project project, Workspace workspace)
          Deprecated. Use AuditContext.getModel(Class, URL, Project, Workspace)
 

Methods in oracle.jdeveloper.audit.analyzer that return ModelAdapter
 ModelAdapter AuditContext.getModel()
          Gets the model adapter for the model currently being traversed.
<T extends ModelAdapter>
ModelAdapter
AuditContext.getModel(java.lang.Class<T> type, java.net.URL url)
          Gets the model adapter for the model corresponding to a URL in the workspace and project currently being traversed.
<T extends ModelAdapter>
ModelAdapter
AuditContext.getModel(java.lang.Class<T> type, java.net.URL url, Project project, Workspace workspace)
          Gets the model adapter for the model corresponding to a workspace, project, and url.
 ModelAdapter AuditContext.getModelAdapter()
          Deprecated. Use AuditContext.getModel().
<T extends ModelAdapter>
ModelAdapter
AuditContext.getModelAdapter(java.lang.Class<T> type, java.net.URL url)
          Deprecated. Use AuditContext.getModel(Class, URL)
<T extends ModelAdapter>
ModelAdapter
AuditTaskContext.getModelAdapter(java.lang.Class<T> type, java.net.URL url, Project project, Workspace workspace)
          Gets the adapter for the model corresponding to a workspace, project, and url.
<T extends ModelAdapter>
ModelAdapter
AuditContext.getModelAdapter(java.lang.Class<T> type, java.net.URL url, Project project, Workspace workspace)
          Deprecated. Use AuditContext.getModel(Class, URL, Project, Workspace)
 

Methods in oracle.jdeveloper.audit.analyzer with parameters of type ModelAdapter
 void ViolationReport.addConstructParameter(java.lang.String name, ModelAdapter model, java.lang.Object construct)
          Adds a construct in a model as a parameter to the violation.
 ViolationReport AuditTaskContext.report(Rule rule, ModelAdapter model, java.lang.Object construct)
          Reports a rule violation for a construct.
 ViolationReport AuditContext.report(Rule rule, ModelAdapter model, java.lang.Object construct)
          Deprecated. Violations reported on a model other than the one currently being traversed are mostly ignored; this method is effectively not supported.
 

Uses of ModelAdapter in oracle.jdeveloper.audit.model
 

Subclasses of ModelAdapter in oracle.jdeveloper.audit.model
 class ContainerModelAdapter
          An abstract ModelAdapter which adapts an Element which contains elements.
 class FileModelAdapter
          An abstract ModelAdapter which adapts a file (text or binary) node.
 class TextFileModelAdapter
          An abstract ModelAdapter adapter which adapts a text file node.
 

Methods in oracle.jdeveloper.audit.model with type parameters of type ModelAdapter
<T extends ModelAdapter>
ModelAdapter
ModelFactory.getModelAdapter(java.lang.Class<T> type, java.net.URL url, Project project, Workspace workspace)
          Gets the model adapter of a type corresponding to a URL, or null if none.
 

Methods in oracle.jdeveloper.audit.model that return ModelAdapter
 ModelAdapter ModelType.createModelAdapter(ModelAdapter model, java.util.Collection<Location> fragments)
          Creates a fragmentary model for this model type corresponding to fragments produced by a model of a different model type.
abstract  ModelAdapter ModelType.createModelAdapter(ModelFactory factory, Element element, java.net.URL url, ContainerModelAdapter directory, ContainerModelAdapter project, ContainerModelAdapter workspace)
          Creates a model for this model type corresponding to a workspace, project, package, element, and URL.
 ModelAdapter Location.getModel()
          Gets the model containing this location.
<T extends ModelAdapter>
ModelAdapter
ModelFactory.getModelAdapter(java.lang.Class<T> type, java.net.URL url, Project project, Workspace workspace)
          Gets the model adapter of a type corresponding to a URL, or null if none.
 

Methods in oracle.jdeveloper.audit.model that return types with arguments of type ModelAdapter
 java.util.Collection<ModelAdapter> ModelFactory.getContainedModelAdapters(Element element, java.net.URL url, ContainerModelAdapter container)
          Gets the models in a container corresponding to an Element.
 java.util.Collection<ModelAdapter> ModelFactory.getModelAdapters(Element element, java.net.URL url, Project project, Workspace workspace)
          Gets the models corresponding to an Element or URL.
 

Methods in oracle.jdeveloper.audit.model with parameters of type ModelAdapter
 boolean ContainerModelAdapter.addContainedModel(ModelAdapter model)
          Adds a model to the set contained by this model.
 boolean ContainerModelAdapter.addContainedModels(ModelAdapter[] models)
          Adds models to the set contained by this model.
protected static int ModelAdapter.compareSiblings(ModelAdapter d1, ModelAdapter d2)
           
abstract  boolean ModelAdapter.contains(ModelAdapter that)
          Gets whether this model contains a model.
 boolean FileModelAdapter.contains(ModelAdapter that)
           
 ModelAdapter ModelType.createModelAdapter(ModelAdapter model, java.util.Collection<Location> fragments)
          Creates a fragmentary model for this model type corresponding to fragments produced by a model of a different model type.
 

Method parameters in oracle.jdeveloper.audit.model with type arguments of type ModelAdapter
 boolean ContainerModelAdapter.addContainedModels(java.util.Collection<ModelAdapter> models)
          Adds models to the set contained by this model.
 

Constructors in oracle.jdeveloper.audit.model with parameters of type ModelAdapter
Location(ModelAdapter model)
          Creates a location within a model.
 

Uses of ModelAdapter in oracle.jdeveloper.audit.service
 

Methods in oracle.jdeveloper.audit.service with parameters of type ModelAdapter
 void AuditListener.modelEntered(Auditor auditor, ModelAdapter model)
          Reports an Auditor model entered event.
 void AuditListener.modelExited(Auditor auditor, ModelAdapter model)
          Reports an Auditor model exited event.
 void TransformerListener.modelSaved(ModelAdapter model)
          Reports that a model was saved.
 void TransformerListener.modelWritable(ModelAdapter model)
          Reports that a model was made writable.
 boolean TransformerListener.saveFailed(java.lang.Throwable exception, ModelAdapter model, java.lang.String label)
          Reports that saving a model failed.
 

Uses of ModelAdapter in oracle.jdeveloper.audit.transform
 

Methods in oracle.jdeveloper.audit.transform that return ModelAdapter
 ModelAdapter TransformSequenceContext.getModel()
          Gets the model to be transformed.
 ModelAdapter TransformContext.getModel()
          Gets the model to be transformed.
abstract  ModelAdapter TransformAdapter.Region.getModel()
           
 ModelAdapter TransformAdapter.LocationRegion.getModel()
           
 ModelAdapter TransformAdapter.ConstructRegion.getModel()
           
 ModelAdapter TransformContext.getModelAdapter()
          Deprecated. use TransformContext.getModel()
 

Methods in oracle.jdeveloper.audit.transform with parameters of type ModelAdapter
 void TransformAdapter.addHighlight(ModelAdapter model, java.lang.Object construct)
          Adds a highlight region for a construct for this context.
 void TransformAdapter.addRemovedHighlight(ModelAdapter model, java.lang.Object construct)
          Adds a highlight region for an about-to-be-removed construct in the model for this context.
 void TransformContext.setSelection(ModelAdapter model, java.lang.Object construct, boolean before, boolean after)
          Deprecated. Use {@link #setSelection(ModelAdapter, Object, int, int)
 void TransformContext.setSelection(ModelAdapter model, java.lang.Object construct, int margin, int endMargin)
          Sets the selection after the transform is applied to a construct in a specified model.
 void TransformAdapter.setSelection(ModelAdapter model, java.lang.Object construct, int margin, int endMargin)
          Sets the selection to be set after a transform is applied.
 

Constructors in oracle.jdeveloper.audit.transform with parameters of type ModelAdapter
TransformAdapter.ConstructRegion(ModelAdapter model, java.lang.Object construct)
           
TransformSequenceContext(TransformAdapter adapter, ModelAdapter model)
          Creates a transform sequence context for a series of transforms.
 

Uses of ModelAdapter in oracle.jdevimpl.audit.core
 

Methods in oracle.jdevimpl.audit.core with type parameters of type ModelAdapter
<T extends ModelAdapter>
ModelAdapter
DefaultAuditContext.getModel(java.lang.Class<T> type, java.net.URL url)
           
<T extends ModelAdapter>
ModelAdapter
DefaultAuditContext.getModel(java.lang.Class<T> type, java.net.URL url, Project project, Workspace workspace)
           
<T extends ModelAdapter>
ModelAdapter
DefaultAuditContext.getModelAdapter(java.lang.Class<T> type, java.net.URL url)
           
<T extends ModelAdapter>
ModelAdapter
DefaultAuditTaskContext.getModelAdapter(java.lang.Class<T> type, java.net.URL url, Project project, Workspace workspace)
           
<T extends ModelAdapter>
ModelAdapter
DefaultAuditContext.getModelAdapter(java.lang.Class<T> type, java.net.URL url, Project project, Workspace workspace)
           
 

Methods in oracle.jdevimpl.audit.core that return ModelAdapter
 ModelAdapter DefaultAuditContext.getModel()
           
<T extends ModelAdapter>
ModelAdapter
DefaultAuditContext.getModel(java.lang.Class<T> type, java.net.URL url)
           
<T extends ModelAdapter>
ModelAdapter
DefaultAuditContext.getModel(java.lang.Class<T> type, java.net.URL url, Project project, Workspace workspace)
           
 ModelAdapter DefaultAuditContext.getModelAdapter()
           
<T extends ModelAdapter>
ModelAdapter
DefaultAuditContext.getModelAdapter(java.lang.Class<T> type, java.net.URL url)
           
<T extends ModelAdapter>
ModelAdapter
DefaultAuditTaskContext.getModelAdapter(java.lang.Class<T> type, java.net.URL url, Project project, Workspace workspace)
           
<T extends ModelAdapter>
ModelAdapter
DefaultAuditContext.getModelAdapter(java.lang.Class<T> type, java.net.URL url, Project project, Workspace workspace)
           
 

Methods in oracle.jdevimpl.audit.core with parameters of type ModelAdapter
 void DefaultAuditModel.modelEntered(Auditor auditor, ModelAdapter model)
           
 void DefaultAuditModel.modelExited(Auditor auditor, ModelAdapter model)
           
 ViolationReport DefaultAuditTaskContext.report(Rule rule, ModelAdapter model, java.lang.Object construct)
           
 ViolationReport DefaultAuditContext.report(Rule rule, ModelAdapter model, java.lang.Object construct)
           
 void DefaultAuditContext.setContext(ModelAdapter model, Location location, java.lang.Object construct, boolean isRoot)
           
 

Uses of ModelAdapter in oracle.jdevimpl.audit.log
 

Methods in oracle.jdevimpl.audit.log with parameters of type ModelAdapter
 void AuditLogPanel.modelSaved(ModelAdapter model)
           
 void AuditLogPanel.modelWritable(ModelAdapter model)
           
 boolean AuditLogPanel.saveFailed(java.lang.Throwable exception, ModelAdapter model, java.lang.String label)
           
 

Uses of ModelAdapter in oracle.jdevimpl.audit.model
 

Subclasses of ModelAdapter in oracle.jdevimpl.audit.model
 class DirectoryModelAdapter
          A ModelAdapter which adapts the Audit framework to a directory in a content set.
 class ProjectModelAdapter
          A ModelAdapter which adapts the Audit framework to the (vestigial) model of a Project node.
 class RootModelAdapter
          A ModelAdapter which adapts the Audit framework to the (vestigial) model of the singleton Workspaces node.
 class UnauditableFileModelAdapter
           
 class WorkspaceModelAdapter
          A ModelAdapter which adapts the Audit framework to the (vestigial) model of a Workspace node.
 

Methods in oracle.jdevimpl.audit.model with type parameters of type ModelAdapter
<T extends ModelAdapter>
ModelAdapter
DefaultModelFactory.getModelAdapter(java.lang.Class<T> type, java.net.URL url, Project project, Workspace workspace)
           
 

Methods in oracle.jdevimpl.audit.model that return ModelAdapter
 ModelAdapter WorkspaceModelType.createModelAdapter(ModelFactory factory, Element element, java.net.URL url, ContainerModelAdapter directory, ContainerModelAdapter project, ContainerModelAdapter workspace)
           
 ModelAdapter UnauditableFileModelType.createModelAdapter(ModelFactory factory, Element element, java.net.URL url, ContainerModelAdapter directory, ContainerModelAdapter project, ContainerModelAdapter workspace)
           
 ModelAdapter ProjectModelType.createModelAdapter(ModelFactory factory, Element element, java.net.URL url, ContainerModelAdapter directory, ContainerModelAdapter project, ContainerModelAdapter workspace)
           
 ModelAdapter RootModelType.createModelAdapter(ModelFactory factory, Element element, java.net.URL url, ContainerModelAdapter directory, ContainerModelAdapter project, ContainerModelAdapter workspace)
           
 ModelAdapter DirectoryModelType.createModelAdapter(ModelFactory factory, Element element, java.net.URL url, ContainerModelAdapter directory, ContainerModelAdapter project, ContainerModelAdapter workspace)
           
<T extends ModelAdapter>
ModelAdapter
DefaultModelFactory.getModelAdapter(java.lang.Class<T> type, java.net.URL url, Project project, Workspace workspace)
           
 

Methods in oracle.jdevimpl.audit.model that return types with arguments of type ModelAdapter
 java.util.Collection<ModelAdapter> DefaultModelFactory.getContainedModelAdapters(Element element, java.net.URL url, ContainerModelAdapter container)
           
 java.util.Collection<ModelAdapter> DefaultModelFactory.getModelAdapters(Element element, java.net.URL url, Project project, Workspace workspace)
           
 

Methods in oracle.jdevimpl.audit.model with parameters of type ModelAdapter
 boolean ProjectModelAdapter.contains(ModelAdapter that)
           
 boolean RootModelAdapter.contains(ModelAdapter that)
           
 boolean DirectoryModelAdapter.contains(ModelAdapter that)
           
 boolean WorkspaceModelAdapter.contains(ModelAdapter that)
           
 

Method parameters in oracle.jdevimpl.audit.model with type arguments of type ModelAdapter
 void DefaultModelFactory.addModelAdapters(java.util.Collection<ModelAdapter> models, Element element, java.net.URL url, Project project, Workspace workspace)
          If the URL is not supplied, then the Element must have been supplied and is used to determine the URL(s).
 void DefaultModelFactory.getOrCreateModelAdapters(java.util.Collection<ModelAdapter> models, Element element, java.net.URL url, Project project, Workspace workspace)
          The workspace/project/URL key is computed.
 


Oracle Fusion Middleware Java API Reference for Oracle Extension SDK
11g Release 2 (11.1.2.1.0)

E17493-02

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