org.eclipse.gmt.umlx.registry.km3.cst.util
Class KM3CSTAdapterFactory

java.lang.Object
  extended by org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
      extended by org.eclipse.gmt.umlx.registry.km3.cst.util.KM3CSTAdapterFactory
All Implemented Interfaces:
org.eclipse.emf.common.notify.AdapterFactory

public class KM3CSTAdapterFactory
extends org.eclipse.emf.common.notify.impl.AdapterFactoryImpl

The Adapter Factory for the model. It provides an adapter createXXX method for each class of the model.

See Also:
KM3CSTPackage

Constructor Summary
KM3CSTAdapterFactory()
          Creates an instance of the adapter factory.
 
Method Summary
 org.eclipse.emf.common.notify.Adapter createAdapter(org.eclipse.emf.common.notify.Notifier target)
          Creates an adapter for the target.
 org.eclipse.emf.common.notify.Adapter createAttributeCSAdapter()
          Creates a new adapter for an object of class 'Attribute CS'.
 org.eclipse.emf.common.notify.Adapter createClassCSAdapter()
          Creates a new adapter for an object of class 'Class CS'.
 org.eclipse.emf.common.notify.Adapter createClassifierCSAdapter()
          Creates a new adapter for an object of class 'Classifier CS'.
 org.eclipse.emf.common.notify.Adapter createDataTypeCSAdapter()
          Creates a new adapter for an object of class 'Data Type CS'.
 org.eclipse.emf.common.notify.Adapter createElementCSAdapter()
          Creates a new adapter for an object of class 'Element CS'.
 org.eclipse.emf.common.notify.Adapter createEnumerationCSAdapter()
          Creates a new adapter for an object of class 'Enumeration CS'.
 org.eclipse.emf.common.notify.Adapter createEObjectAdapter()
          Creates a new adapter for the default case.
 org.eclipse.emf.common.notify.Adapter createFeatureCSAdapter()
          Creates a new adapter for an object of class 'Feature CS'.
 org.eclipse.emf.common.notify.Adapter createIdentifiedElementCSAdapter()
          Creates a new adapter for an object of class 'Identified Element CS'.
 org.eclipse.emf.common.notify.Adapter createIdentifierCSAdapter()
          Creates a new adapter for an object of class 'Identifier CS'.
 org.eclipse.emf.common.notify.Adapter createIdentifiersCSAdapter()
          Creates a new adapter for an object of class 'Identifiers CS'.
 org.eclipse.emf.common.notify.Adapter createLiteralCSAdapter()
          Creates a new adapter for an object of class 'Literal CS'.
 org.eclipse.emf.common.notify.Adapter createMetaModelCSAdapter()
          Creates a new adapter for an object of class 'Meta Model CS'.
 org.eclipse.emf.common.notify.Adapter createMultiplicityBoundCSAdapter()
          Creates a new adapter for an object of class 'Multiplicity Bound CS'.
 org.eclipse.emf.common.notify.Adapter createPackageCSAdapter()
          Creates a new adapter for an object of class 'Package CS'.
 org.eclipse.emf.common.notify.Adapter createReferenceCSAdapter()
          Creates a new adapter for an object of class 'Reference CS'.
 boolean isFactoryForType(java.lang.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
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

KM3CSTAdapterFactory

public KM3CSTAdapterFactory()
Creates an instance of the adapter factory.

Method Detail

isFactoryForType

public boolean isFactoryForType(java.lang.Object object)
Returns whether this factory is applicable for the type of the object. This implementation returns true if the object is either the model's package or is an instance object of the model.

Specified by:
isFactoryForType in interface org.eclipse.emf.common.notify.AdapterFactory
Overrides:
isFactoryForType in class org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
Returns:
whether this factory is applicable for the type of the object.

createAdapter

public org.eclipse.emf.common.notify.Adapter createAdapter(org.eclipse.emf.common.notify.Notifier target)
Creates an adapter for the target.

Overrides:
createAdapter in class org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
Parameters:
target - the object to adapt.
Returns:
the adapter for the target.

createAttributeCSAdapter

public org.eclipse.emf.common.notify.Adapter createAttributeCSAdapter()
Creates a new adapter for an object of class 'Attribute CS'. 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:
AttributeCS

createFeatureCSAdapter

public org.eclipse.emf.common.notify.Adapter createFeatureCSAdapter()
Creates a new adapter for an object of class 'Feature CS'. 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:
FeatureCS

createClassCSAdapter

public org.eclipse.emf.common.notify.Adapter createClassCSAdapter()
Creates a new adapter for an object of class 'Class CS'. 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:
ClassCS

createClassifierCSAdapter

public org.eclipse.emf.common.notify.Adapter createClassifierCSAdapter()
Creates a new adapter for an object of class 'Classifier CS'. 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:
ClassifierCS

createDataTypeCSAdapter

public org.eclipse.emf.common.notify.Adapter createDataTypeCSAdapter()
Creates a new adapter for an object of class 'Data Type CS'. 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:
DataTypeCS

createEnumerationCSAdapter

public org.eclipse.emf.common.notify.Adapter createEnumerationCSAdapter()
Creates a new adapter for an object of class 'Enumeration CS'. 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:
EnumerationCS

createIdentifierCSAdapter

public org.eclipse.emf.common.notify.Adapter createIdentifierCSAdapter()
Creates a new adapter for an object of class 'Identifier CS'. 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:
IdentifierCS

createLiteralCSAdapter

public org.eclipse.emf.common.notify.Adapter createLiteralCSAdapter()
Creates a new adapter for an object of class 'Literal CS'. 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:
LiteralCS

createMetaModelCSAdapter

public org.eclipse.emf.common.notify.Adapter createMetaModelCSAdapter()
Creates a new adapter for an object of class 'Meta Model CS'. 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:
MetaModelCS

createPackageCSAdapter

public org.eclipse.emf.common.notify.Adapter createPackageCSAdapter()
Creates a new adapter for an object of class 'Package CS'. 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:
PackageCS

createReferenceCSAdapter

public org.eclipse.emf.common.notify.Adapter createReferenceCSAdapter()
Creates a new adapter for an object of class 'Reference CS'. 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:
ReferenceCS

createElementCSAdapter

public org.eclipse.emf.common.notify.Adapter createElementCSAdapter()
Creates a new adapter for an object of class 'Element CS'. 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:
ElementCS

createIdentifiedElementCSAdapter

public org.eclipse.emf.common.notify.Adapter createIdentifiedElementCSAdapter()
Creates a new adapter for an object of class 'Identified Element CS'. 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:
IdentifiedElementCS

createIdentifiersCSAdapter

public org.eclipse.emf.common.notify.Adapter createIdentifiersCSAdapter()
Creates a new adapter for an object of class 'Identifiers CS'. 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:
IdentifiersCS

createMultiplicityBoundCSAdapter

public org.eclipse.emf.common.notify.Adapter createMultiplicityBoundCSAdapter()
Creates a new adapter for an object of class 'Multiplicity Bound CS'. 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:
MultiplicityBoundCS

createEObjectAdapter

public org.eclipse.emf.common.notify.Adapter createEObjectAdapter()
Creates a new adapter for the default case. This default implementation returns null.

Returns:
the new adapter.