Class XdtoAdapterFactory

  • All Implemented Interfaces:
    org.eclipse.emf.common.notify.AdapterFactory

    public class XdtoAdapterFactory
    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:
    XdtoPackage
    • Field Detail

      • modelPackage

        protected static XdtoPackage modelPackage
        The cached model package.
      • modelSwitch

        protected XdtoSwitch<org.eclipse.emf.common.notify.Adapter> modelSwitch
        The switch that delegates to the createXXX methods.
    • Constructor Detail

      • XdtoAdapterFactory

        public XdtoAdapterFactory()
        Creates an instance of the adapter factory.
    • Method Detail

      • isFactoryForType

        public boolean isFactoryForType​(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.
      • createModelAdapter

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

        public org.eclipse.emf.common.notify.Adapter createInnerModelAdapter()
        Creates a new adapter for an object of class 'Inner Model'. 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:
        InnerModel
      • createPackageAdapter

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

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

        public org.eclipse.emf.common.notify.Adapter createValueTypeAdapter()
        Creates a new adapter for an object of class 'Value 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:
        ValueType
      • createObjectTypeAdapter

        public org.eclipse.emf.common.notify.Adapter createObjectTypeAdapter()
        Creates a new adapter for an object of class 'Object 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:
        ObjectType
      • createPropertyAdapter

        public org.eclipse.emf.common.notify.Adapter createPropertyAdapter()
        Creates a new adapter for an object of class 'Property'. 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:
        Property
      • createImportAdapter

        public org.eclipse.emf.common.notify.Adapter createImportAdapter()
        Creates a new adapter for an object of class 'Import'. 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:
        Import
      • createPatternAdapter

        public org.eclipse.emf.common.notify.Adapter createPatternAdapter()
        Creates a new adapter for an object of class 'Pattern'. 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:
        Pattern
      • createEnumerationAdapter

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

        public org.eclipse.emf.common.notify.Adapter createPackageScopeSpecAdapter()
        Creates a new adapter for an object of class 'Package Scope Spec'. 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:
        PackageScopeSpec
      • 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.