Class LanguageAdapterFactory
- Object
-
- AdapterFactoryImpl
-
- LanguageAdapterFactory
-
- All Implemented Interfaces:
AdapterFactory
public class LanguageAdapterFactory extends AdapterFactoryImpl
The Adapter Factory for the model. It provides an adaptercreateXXX
method for each class of the model.- See Also:
LanguagePackage
-
-
Field Summary
Fields Modifier and Type Field Description protected static LanguagePackage
modelPackage
The cached model package.protected LanguageSwitch<Adapter>
modelSwitch
The switch that delegates to thecreateXXX
methods.
-
Constructor Summary
Constructors Constructor Description LanguageAdapterFactory()
Creates an instance of the adapter factory.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Adapter
createAdapter(Notifier target)
Creates an adapter for thetarget
.Adapter
createAnimateColorPrototypeAdapter()
Creates a new adapter for an object of class 'Animate Color Prototype
'.Adapter
createAnimateColorTypeAdapter()
Creates a new adapter for an object of class 'Animate Color Type
'.Adapter
createAnimateMotionPrototypeAdapter()
Creates a new adapter for an object of class 'Animate Motion Prototype
'.Adapter
createAnimateMotionTypeAdapter()
Creates a new adapter for an object of class 'Animate Motion Type
'.Adapter
createAnimatePrototypeAdapter()
Creates a new adapter for an object of class 'Animate Prototype
'.Adapter
createAnimateTypeAdapter()
Creates a new adapter for an object of class 'Animate Type
'.Adapter
createDocumentRootAdapter()
Creates a new adapter for an object of class 'Document Root
'.Adapter
createEObjectAdapter()
Creates a new adapter for the default case.Adapter
createSetPrototypeAdapter()
Creates a new adapter for an object of class 'Set Prototype
'.Adapter
createSetTypeAdapter()
Creates a new adapter for an object of class 'Set Type
'.boolean
isFactoryForType(Object object)
Returns whether this factory is applicable for the type of the object.
-
-
-
Field Detail
-
modelPackage
protected static LanguagePackage modelPackage
The cached model package.
-
modelSwitch
protected LanguageSwitch<Adapter> modelSwitch
The switch that delegates to thecreateXXX
methods.
-
-
Method Detail
-
isFactoryForType
public boolean isFactoryForType(Object object)
Returns whether this factory is applicable for the type of the object. This implementation returnstrue
if the object is either the model's package or is an instance object of the model.- Specified by:
isFactoryForType
in interfaceAdapterFactory
- Overrides:
isFactoryForType
in classAdapterFactoryImpl
- Returns:
- whether this factory is applicable for the type of the object.
-
createAdapter
public Adapter createAdapter(Notifier target)
Creates an adapter for thetarget
.- Overrides:
createAdapter
in classAdapterFactoryImpl
- Parameters:
target
- the object to adapt.- Returns:
- the adapter for the
target
.
-
createAnimateColorTypeAdapter
public Adapter createAnimateColorTypeAdapter()
Creates a new adapter for an object of class 'Animate Color Type
'. 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.- Returns:
- the new adapter.
- See Also:
AnimateColorType
-
createAnimateMotionTypeAdapter
public Adapter createAnimateMotionTypeAdapter()
Creates a new adapter for an object of class 'Animate Motion Type
'. 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.- Returns:
- the new adapter.
- See Also:
AnimateMotionType
-
createAnimateTypeAdapter
public Adapter createAnimateTypeAdapter()
Creates a new adapter for an object of class 'Animate Type
'. 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.- Returns:
- the new adapter.
- See Also:
AnimateType
-
createDocumentRootAdapter
public Adapter createDocumentRootAdapter()
Creates a new adapter for an object of class 'Document Root
'. 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.- Returns:
- the new adapter.
- See Also:
DocumentRoot
-
createSetTypeAdapter
public Adapter createSetTypeAdapter()
Creates a new adapter for an object of class 'Set Type
'. 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.- Returns:
- the new adapter.
- See Also:
SetType
-
createAnimateColorPrototypeAdapter
public Adapter createAnimateColorPrototypeAdapter()
Creates a new adapter for an object of class 'Animate Color Prototype
'. 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.- Returns:
- the new adapter.
- See Also:
AnimateColorPrototype
-
createAnimateMotionPrototypeAdapter
public Adapter createAnimateMotionPrototypeAdapter()
Creates a new adapter for an object of class 'Animate Motion Prototype
'. 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.- Returns:
- the new adapter.
- See Also:
AnimateMotionPrototype
-
createAnimatePrototypeAdapter
public Adapter createAnimatePrototypeAdapter()
Creates a new adapter for an object of class 'Animate Prototype
'. 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.- Returns:
- the new adapter.
- See Also:
AnimatePrototype
-
createSetPrototypeAdapter
public Adapter createSetPrototypeAdapter()
Creates a new adapter for an object of class 'Set Prototype
'. 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.- Returns:
- the new adapter.
- See Also:
SetPrototype
-
createEObjectAdapter
public Adapter createEObjectAdapter()
Creates a new adapter for the default case. This default implementation returns null.- Returns:
- the new adapter.
-
-