public class featureconfigAdapterFactory extends AdapterFactoryImpl
createXXX method for each class of the model.
featureconfigPackage| Constructor and Description |
|---|
featureconfigAdapterFactory()
Creates an instance of the adapter factory.
|
| Modifier and Type | Method and Description |
|---|---|
Adapter |
createAdapter(Notifier target)
Creates an adapter for the
target. |
Adapter |
createAttributeValueAdapter()
Creates a new adapter for an object of class '
Attribute Value'. |
Adapter |
createConfigNodeAdapter()
Creates a new adapter for an object of class '
Config Node'. |
Adapter |
createConfigurationAdapter()
Creates a new adapter for an object of class '
Configuration'. |
Adapter |
createDoubleAttributeValueAdapter()
Creates a new adapter for an object of class '
Double Attribute Value'. |
Adapter |
createEObjectAdapter()
Creates a new adapter for the default case.
|
Adapter |
createExternalObjectAttributeValueAdapter()
Creates a new adapter for an object of class '
External Object Attribute Value'. |
Adapter |
createFeatureConfigAdapter()
Creates a new adapter for an object of class '
Feature Config'. |
Adapter |
createIdentifierAdapter()
Creates a new adapter for an object of class '
Identifier'. |
Adapter |
createIntegerAttributeValueAdapter()
Creates a new adapter for an object of class '
Integer Attribute Value'. |
Adapter |
createNamedElementAdapter()
Creates a new adapter for an object of class '
Named Element'. |
Adapter |
createStringAttributeValueAdapter()
Creates a new adapter for an object of class '
String Attribute Value'. |
boolean |
isFactoryForType(Object object)
Returns whether this factory is applicable for the type of the object.
|
adapt, adapt, adaptAllNew, adaptNewpublic featureconfigAdapterFactory()
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 AdapterFactoryisFactoryForType in class AdapterFactoryImplpublic Adapter createAdapter(Notifier target)
target.
createAdapter in class AdapterFactoryImpltarget - the object to adapt.target.public Adapter createConfigNodeAdapter()
Config 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.
ConfigNodepublic Adapter createAttributeValueAdapter()
Attribute Value'.
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.
AttributeValuepublic Adapter createFeatureConfigAdapter()
Feature Config'.
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.
FeatureConfigpublic Adapter createConfigurationAdapter()
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.
Configurationpublic Adapter createIntegerAttributeValueAdapter()
Integer Attribute Value'.
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.
IntegerAttributeValuepublic Adapter createDoubleAttributeValueAdapter()
Double Attribute Value'.
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.
DoubleAttributeValuepublic Adapter createStringAttributeValueAdapter()
String Attribute Value'.
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.
StringAttributeValuepublic Adapter createExternalObjectAttributeValueAdapter()
External Object Attribute Value'.
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.
ExternalObjectAttributeValuepublic 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.
Identifierpublic Adapter createNamedElementAdapter()
Named Element'.
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.
NamedElementpublic Adapter createEObjectAdapter()