Class MembersAdapterFactory
java.lang.Object
org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
org.emftext.language.java.members.util.MembersAdapterFactory
- All Implemented Interfaces:
AdapterFactory
- Direct Known Subclasses:
MembersItemProviderAdapterFactory
The Adapter Factory for the model.
It provides an adapter
createXXX
method for each class of the model.
- See Also:
- Generated class or method.
-
Field Summary
Modifier and TypeFieldDescriptionprotected static MembersPackage
The cached model package.protected MembersSwitch<Adapter>
The switch that delegates to thecreateXXX
methods. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncreateAdapter
(Notifier target) Creates an adapter for thetarget
.Creates a new adapter for an object of class 'Additional Field
'.Creates a new adapter for an object of class 'Annotable
'.Creates a new adapter for an object of class 'Annotable And Modifiable
'.Creates a new adapter for an object of class 'Argumentable
'.Creates a new adapter for an object of class 'Block Container
'.Creates a new adapter for an object of class 'Class Method
'.Creates a new adapter for an object of class 'Commentable
'.Creates a new adapter for an object of class 'Constructor
'.Creates a new adapter for an object of class 'Empty Member
'.Creates a new adapter for an object of class 'Enum Constant
'.Creates a new adapter for the default case.Creates a new adapter for an object of class 'Exception Thrower
'.Creates a new adapter for an object of class 'Field
'.Creates a new adapter for an object of class 'Initializable
'.Creates a new adapter for an object of class 'Interface Method
'.Creates a new adapter for an object of class 'Member
'.Creates a new adapter for an object of class 'Member Container
'.Creates a new adapter for an object of class 'Method
'.Creates a new adapter for an object of class 'Named Element
'.Creates a new adapter for an object of class 'Parametrizable
'.Creates a new adapter for an object of class 'Referenceable Element
'.Creates a new adapter for an object of class 'Statement Container
'.Creates a new adapter for an object of class 'Statement List Container
'.Creates a new adapter for an object of class 'Type Argumentable
'.Creates a new adapter for an object of class 'Typed Element
'.Creates a new adapter for an object of class 'Type Parametrizable
'.Creates a new adapter for an object of class 'Variable
'.boolean
isFactoryForType
(Object object) Returns whether this factory is applicable for the type of the object.Methods inherited from class org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
adapt, adapt, adaptAllNew, adaptNew, associate, createAdapter, resolve
-
Field Details
-
modelPackage
The cached model package.- Generated class or method.
-
modelSwitch
The switch that delegates to thecreateXXX
methods.- Generated class or method.
-
-
Constructor Details
-
MembersAdapterFactory
public MembersAdapterFactory()Creates an instance of the adapter factory.- Generated class or method.
-
-
Method Details
-
isFactoryForType
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.
- Generated class or method.
-
createAdapter
Creates an adapter for thetarget
.- Overrides:
createAdapter
in classAdapterFactoryImpl
- Parameters:
target
- the object to adapt.- Returns:
- the adapter for the
target
. - Generated class or method.
-
createExceptionThrowerAdapter
Creates a new adapter for an object of class 'Exception Thrower
'. 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:
- Generated class or method.
-
createMemberAdapter
Creates a new adapter for an object of class 'Member
'. 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:
- Generated class or method.
-
createMemberContainerAdapter
Creates a new adapter for an object of class 'Member Container
'. 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:
- Generated class or method.
-
createAdditionalFieldAdapter
Creates a new adapter for an object of class 'Additional Field
'. 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:
- Generated class or method.
-
createConstructorAdapter
Creates a new adapter for an object of class 'Constructor
'. 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:
- Generated class or method.
-
createEmptyMemberAdapter
Creates a new adapter for an object of class 'Empty Member
'. 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:
- Generated class or method.
-
createFieldAdapter
Creates a new adapter for an object of class 'Field
'. 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:
- Generated class or method.
-
createMethodAdapter
Creates a new adapter for an object of class 'Method
'. 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:
- Generated class or method.
-
createInterfaceMethodAdapter
Creates a new adapter for an object of class 'Interface Method
'. 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:
- Generated class or method.
-
createClassMethodAdapter
Creates a new adapter for an object of class 'Class Method
'. 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:
- Generated class or method.
-
createEnumConstantAdapter
Creates a new adapter for an object of class 'Enum Constant
'. 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:
- Generated class or method.
-
createCommentableAdapter
Creates a new adapter for an object of class 'Commentable
'. 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:
- Generated class or method.
-
createNamedElementAdapter
Creates a new adapter for an object of class '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.- Returns:
- the new adapter.
- See Also:
- Generated class or method.
-
createReferenceableElementAdapter
Creates a new adapter for an object of class 'Referenceable 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.- Returns:
- the new adapter.
- See Also:
- Generated class or method.
-
createInitializableAdapter
Creates a new adapter for an object of class 'Initializable
'. 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:
- Generated class or method.
-
createTypedElementAdapter
Creates a new adapter for an object of class 'Typed 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.- Returns:
- the new adapter.
- See Also:
- Generated class or method.
-
createParametrizableAdapter
Creates a new adapter for an object of class 'Parametrizable
'. 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:
- Generated class or method.
-
createTypeParametrizableAdapter
Creates a new adapter for an object of class 'Type Parametrizable
'. 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:
- Generated class or method.
-
createAnnotableAndModifiableAdapter
Creates a new adapter for an object of class 'Annotable And Modifiable
'. 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:
- Generated class or method.
-
createBlockContainerAdapter
Creates a new adapter for an object of class 'Block Container
'. 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:
- Generated class or method.
-
createStatementListContainerAdapter
Creates a new adapter for an object of class 'Statement List Container
'. 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:
- Generated class or method.
-
createTypeArgumentableAdapter
Creates a new adapter for an object of class 'Type Argumentable
'. 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:
- Generated class or method.
-
createVariableAdapter
Creates a new adapter for an object of class 'Variable
'. 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:
- Generated class or method.
-
createStatementContainerAdapter
Creates a new adapter for an object of class 'Statement Container
'. 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:
- Generated class or method.
-
createArgumentableAdapter
Creates a new adapter for an object of class 'Argumentable
'. 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:
- Generated class or method.
-
createAnnotableAdapter
Creates a new adapter for an object of class 'Annotable
'. 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:
- Generated class or method.
-
createEObjectAdapter
Creates a new adapter for the default case. This default implementation returns null.- Returns:
- the new adapter.
- Generated class or method.
-