public class OptionsAdapterFactory extends AdapterFactoryImpl
createXXX
method for each class of the model.
OptionsPackage
Constructor and Description |
---|
OptionsAdapterFactory()
Creates an instance of the adapter factory.
|
Modifier and Type | Method and Description |
---|---|
Adapter |
createAdapter(Notifier target)
Creates an adapter for the
target . |
Adapter |
createAlternativeObjectAdapter()
Creates a new adapter for an object of class '
Alternative Object '. |
Adapter |
createAnalysisRationaleAdapter()
Creates a new adapter for an object of class '
Analysis Rationale '. |
Adapter |
createConflictObjectAdapter()
Creates a new adapter for an object of class '
Conflict Object '. |
Adapter |
createConstraintAdapter()
Creates a new adapter for an object of class '
Constraint '. |
Adapter |
createCouldResolveObjectAdapter()
Creates a new adapter for an object of class '
Could Resolve Object '. |
Adapter |
createDependencyObjectAdapter()
Creates a new adapter for an object of class '
Dependency Object '. |
Adapter |
createDuplicationObjectAdapter()
Creates a new adapter for an object of class '
Duplication Object '. |
Adapter |
createEObjectAdapter()
Creates a new adapter for the default case.
|
Adapter |
createIdentifierAdapter()
Creates a new adapter for an object of class '
Identifier '. |
Adapter |
createOptionAdapter()
Creates a new adapter for an object of class '
Option '. |
Adapter |
createOptionRepositoryAdapter()
Creates a new adapter for an object of class '
Option Repository '. |
Adapter |
createParentalObjectAdapter()
Creates a new adapter for an object of class '
Parental Object '. |
Adapter |
createRationaleAdapter()
Creates a new adapter for an object of class '
Rationale '. |
Adapter |
createRelationObjectAdapter()
Creates a new adapter for an object of class '
Relation Object '. |
Adapter |
createResolveObjectAdapter()
Creates a new adapter for an object of class '
Resolve Object '. |
Adapter |
createSelectionObjectAdapter()
Creates a new adapter for an object of class '
Selection Object '. |
Adapter |
createStakeholderObjectAdapter()
Creates a new adapter for an object of class '
Stakeholder Object '. |
Adapter |
createTextOptionAdapter()
Creates a new adapter for an object of class '
Text Option '. |
Adapter |
createTextRationaleAdapter()
Creates a new adapter for an object of class '
Text Rationale '. |
Adapter |
createTraceableObjectAdapter()
Creates a new adapter for an object of class '
Traceable Object '. |
Adapter |
createTriggerObjectAdapter()
Creates a new adapter for an object of class '
Trigger Object '. |
boolean |
isFactoryForType(Object object)
Returns whether this factory is applicable for the type of the object.
|
adapt, adapt, adaptAllNew, adaptNew
public OptionsAdapterFactory()
public boolean isFactoryForType(Object object)
true
if the object is either the model's package or is an instance object of the model.
isFactoryForType
in interface AdapterFactory
isFactoryForType
in class AdapterFactoryImpl
public Adapter createAdapter(Notifier target)
target
.
createAdapter
in class AdapterFactoryImpl
target
- the object to adapt.target
.public Adapter createTextOptionAdapter()
Text Option
'.
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.
TextOption
public Adapter createOptionAdapter()
Option
'.
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.
Option
public Adapter createOptionRepositoryAdapter()
Option Repository
'.
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.
OptionRepository
public Adapter createConstraintAdapter()
Constraint
'.
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.
Constraint
public Adapter createRationaleAdapter()
Rationale
'.
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.
Rationale
public Adapter createTextRationaleAdapter()
Text Rationale
'.
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.
TextRationale
public Adapter createAnalysisRationaleAdapter()
Analysis Rationale
'.
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.
AnalysisRationale
public Adapter createIdentifierAdapter()
Identifier
'.
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.
Identifier
public Adapter createRelationObjectAdapter()
Relation Object
'.
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.
RelationObject
public Adapter createConflictObjectAdapter()
Conflict Object
'.
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.
ConflictObject
public Adapter createDuplicationObjectAdapter()
Duplication Object
'.
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.
DuplicationObject
public Adapter createDependencyObjectAdapter()
Dependency Object
'.
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.
DependencyObject
public Adapter createParentalObjectAdapter()
Parental Object
'.
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.
ParentalObject
public Adapter createTriggerObjectAdapter()
Trigger Object
'.
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.
TriggerObject
public Adapter createResolveObjectAdapter()
Resolve Object
'.
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.
ResolveObject
public Adapter createAlternativeObjectAdapter()
Alternative Object
'.
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.
AlternativeObject
public Adapter createCouldResolveObjectAdapter()
Could Resolve Object
'.
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.
CouldResolveObject
public Adapter createStakeholderObjectAdapter()
Stakeholder Object
'.
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.
StakeholderObject
public Adapter createSelectionObjectAdapter()
Selection Object
'.
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.
SelectionObject
public Adapter createTraceableObjectAdapter()
Traceable Object
'.
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.
TraceableObject
public Adapter createEObjectAdapter()