public class DatasourcesAdapterFactory
extends AdapterFactoryImpl
createXXX
method for each class of the model.
DatasourcesPackage
Modifier and Type | Field and Description |
---|---|
protected static DatasourcesPackage |
modelPackage
The cached model package.
|
protected DatasourcesSwitch<Adapter> |
modelSwitch
The switch that delegates to the
createXXX methods. |
Constructor and Description |
---|
DatasourcesAdapterFactory()
Creates an instance of the adapter factory.
|
Modifier and Type | Method and Description |
---|---|
Adapter |
createAdapter(Notifier target)
Creates an adapter for the
target . |
Adapter |
createAQueryResultAdapter()
Creates a new adapter for an object of class '
AQuery Result '. |
Adapter |
createCompoundQueryAdapter()
Creates a new adapter for an object of class '
Compound Query '. |
Adapter |
createCompoundRefQueryAdapter()
Creates a new adapter for an object of class '
Compound Ref Query '. |
Adapter |
createDataSourceAdapter()
Creates a new adapter for an object of class '
Data Source '. |
Adapter |
createDataSourceLibraryConfigurationAdapter()
Creates a new adapter for an object of class '
Data Source Library Configuration '. |
Adapter |
createEObjectAdapter()
Creates a new adapter for the default case.
|
Adapter |
createISynchableAdapter()
Creates a new adapter for an object of class '
ISynchable '. |
Adapter |
createNodeAdapter()
Creates a new adapter for an object of class '
Node '. |
Adapter |
createProcessQueryAdapter()
Creates a new adapter for an object of class '
Process Query '. |
Adapter |
createQueryAdapter()
Creates a new adapter for an object of class '
Query '. |
Adapter |
createQueryMatchingCriteriaAdapter()
Creates a new adapter for an object of class '
Query Matching Criteria '. |
Adapter |
createQueryResultAdapter()
Creates a new adapter for an object of class '
Query Result '. |
Adapter |
createQueryResultsAdapter()
Creates a new adapter for an object of class '
Query Results '. |
Adapter |
createRunnableQueryAdapter()
Creates a new adapter for an object of class '
Runnable Query '. |
Adapter |
createSerializableQueryResultAdapter()
Creates a new adapter for an object of class '
Serializable Query Result '. |
Adapter |
createSimpleQueryAdapter()
Creates a new adapter for an object of class '
Simple Query '. |
boolean |
isFactoryForType(java.lang.Object object)
Returns whether this factory is applicable for the type of the object.
|
protected static DatasourcesPackage modelPackage
protected DatasourcesSwitch<Adapter> modelSwitch
createXXX
methods.
public DatasourcesAdapterFactory()
public boolean isFactoryForType(java.lang.Object object)
true
if the object is either the model's package or is an instance object of the model.
public Adapter createAdapter(Notifier target)
target
.
target
- the object to adapt.target
.public Adapter createDataSourceAdapter()
Data Source
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
DataSource
public Adapter createDataSourceLibraryConfigurationAdapter()
Data Source Library Configuration
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
DataSourceLibraryConfiguration
public Adapter createQueryAdapter()
Query
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
Query
public Adapter createProcessQueryAdapter()
Process Query
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
ProcessQuery
public Adapter createSimpleQueryAdapter()
Simple Query
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
SimpleQuery
public Adapter createCompoundQueryAdapter()
Compound Query
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
CompoundQuery
public Adapter createCompoundRefQueryAdapter()
Compound Ref Query
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
CompoundRefQuery
public Adapter createQueryResultsAdapter()
Query Results
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
QueryResults
public Adapter createRunnableQueryAdapter()
Runnable Query
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
RunnableQuery
public Adapter createAQueryResultAdapter()
AQuery Result
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
AQueryResult
public Adapter createQueryResultAdapter()
Query Result
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
QueryResult
public Adapter createSerializableQueryResultAdapter()
Serializable Query Result
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
SerializableQueryResult
public Adapter createQueryMatchingCriteriaAdapter()
Query Matching Criteria
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
QueryMatchingCriteria
public Adapter createISynchableAdapter()
ISynchable
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
ISynchable
public Adapter createNodeAdapter()
Node
'.
This default implementation returns null so that we can easily ignore cases;
it's useful to ignore a case when inheritance will catch all the cases anyway.
Node
public Adapter createEObjectAdapter()