blob: 48bf257a5a63ff39d1b1febdde64b2e09e7bc637 [file] [log] [blame]
/**
*
* Copyright (c) 2009-2010 Thales Corporate Services S.A.S.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Thales Corporate Services S.A.S - initial API and implementation
*
*/
package org.eclipse.egf.model.domain.util;
import org.eclipse.egf.model.domain.Domain;
import org.eclipse.egf.model.domain.DomainEPackage;
import org.eclipse.egf.model.domain.DomainPackage;
import org.eclipse.egf.model.domain.DomainURI;
import org.eclipse.egf.model.domain.DomainViewpoint;
import org.eclipse.egf.model.domain.TypeDomainEPackage;
import org.eclipse.egf.model.domain.TypeDomainURI;
import org.eclipse.egf.model.fcore.ModelElement;
import org.eclipse.egf.model.fcore.Viewpoint;
import org.eclipse.egf.model.types.Type;
import org.eclipse.egf.model.types.TypeElement;
import org.eclipse.egf.model.types.TypeObject;
import org.eclipse.emf.common.notify.Adapter;
import org.eclipse.emf.common.notify.Notifier;
import org.eclipse.emf.common.notify.impl.AdapterFactoryImpl;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* The <b>Adapter Factory</b> for the model.
* It provides an adapter <code>createXXX</code> method for each class of the
* model.
* <!-- end-user-doc -->
*
* @see org.eclipse.egf.model.domain.DomainPackage
* @generated
*/
public class DomainAdapterFactory extends AdapterFactoryImpl {
/**
* The cached model package.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
protected static DomainPackage modelPackage;
/**
* Creates an instance of the adapter factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
public DomainAdapterFactory() {
if (modelPackage == null) {
modelPackage = DomainPackage.eINSTANCE;
}
}
/**
* Returns whether this factory is applicable for the type of the object.
* <!-- begin-user-doc -->
* This implementation returns <code>true</code> if the object is either the
* model's package or is an instance object of the model.
* <!-- end-user-doc -->
*
* @return whether this factory is applicable for the type of the object.
* @generated
*/
@Override
public boolean isFactoryForType(Object object) {
if (object == modelPackage) {
return true;
}
if (object instanceof EObject) {
return ((EObject) object).eClass().getEPackage() == modelPackage;
}
return false;
}
/**
* The switch that delegates to the <code>createXXX</code> methods.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
protected DomainSwitch<Adapter> modelSwitch = new DomainSwitch<Adapter>() {
@Override
public Adapter caseDomainViewpoint(DomainViewpoint object) {
return createDomainViewpointAdapter();
}
@Override
public Adapter caseDomain(Domain object) {
return createDomainAdapter();
}
@Override
public Adapter caseDomainEPackage(DomainEPackage object) {
return createDomainEPackageAdapter();
}
@Override
public Adapter caseTypeDomainEPackage(TypeDomainEPackage object) {
return createTypeDomainEPackageAdapter();
}
@Override
public Adapter caseDomainURI(DomainURI object) {
return createDomainURIAdapter();
}
@Override
public Adapter caseTypeDomainURI(TypeDomainURI object) {
return createTypeDomainURIAdapter();
}
@Override
public Adapter caseModelElement(ModelElement object) {
return createModelElementAdapter();
}
@Override
public Adapter caseViewpoint(Viewpoint object) {
return createViewpointAdapter();
}
@Override
public Adapter caseTypeElement(TypeElement object) {
return createTypeElementAdapter();
}
@Override
public Adapter caseType(Type object) {
return createTypeAdapter();
}
@Override
public Adapter caseTypeObject(TypeObject object) {
return createTypeObjectAdapter();
}
@Override
public Adapter defaultCase(EObject object) {
return createEObjectAdapter();
}
};
/**
* Creates an adapter for the <code>target</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @param target
* the object to adapt.
* @return the adapter for the <code>target</code>.
* @generated
*/
@Override
public Adapter createAdapter(Notifier target) {
return modelSwitch.doSwitch((EObject) target);
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.egf.model.domain.DomainViewpoint <em>Viewpoint</em>}'.
* <!-- begin-user-doc -->
* 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.
* <!-- end-user-doc -->
*
* @return the new adapter.
* @see org.eclipse.egf.model.domain.DomainViewpoint
* @generated
*/
public Adapter createDomainViewpointAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.egf.model.domain.Domain <em>Domain</em>}'.
* <!-- begin-user-doc -->
* 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.
* <!-- end-user-doc -->
*
* @return the new adapter.
* @see org.eclipse.egf.model.domain.Domain
* @generated
*/
public Adapter createDomainAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.egf.model.domain.DomainEPackage <em>EPackage</em>}'.
* <!-- begin-user-doc -->
* 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.
* <!-- end-user-doc -->
*
* @return the new adapter.
* @see org.eclipse.egf.model.domain.DomainEPackage
* @generated
*/
public Adapter createDomainEPackageAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.egf.model.domain.TypeDomainEPackage <em>Type Domain EPackage</em>}'.
* <!-- begin-user-doc -->
* 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.
* <!-- end-user-doc -->
*
* @return the new adapter.
* @see org.eclipse.egf.model.domain.TypeDomainEPackage
* @generated
*/
public Adapter createTypeDomainEPackageAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.egf.model.domain.DomainURI <em>URI</em>}'.
* <!-- begin-user-doc -->
* 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.
* <!-- end-user-doc -->
*
* @return the new adapter.
* @see org.eclipse.egf.model.domain.DomainURI
* @generated
*/
public Adapter createDomainURIAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.egf.model.domain.TypeDomainURI <em>Type Domain URI</em>}'.
* <!-- begin-user-doc -->
* 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.
* <!-- end-user-doc -->
*
* @return the new adapter.
* @see org.eclipse.egf.model.domain.TypeDomainURI
* @generated
*/
public Adapter createTypeDomainURIAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.egf.model.fcore.ModelElement <em>Model Element</em>}'.
* <!-- begin-user-doc -->
* 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.
* <!-- end-user-doc -->
*
* @return the new adapter.
* @see org.eclipse.egf.model.fcore.ModelElement
* @generated
*/
public Adapter createModelElementAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.egf.model.fcore.Viewpoint <em>Viewpoint</em>}'.
* <!-- begin-user-doc -->
* 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.
* <!-- end-user-doc -->
*
* @return the new adapter.
* @see org.eclipse.egf.model.fcore.Viewpoint
* @generated
*/
public Adapter createViewpointAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.egf.model.types.TypeElement <em>Type Element</em>}'.
* <!-- begin-user-doc -->
* 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.
* <!-- end-user-doc -->
*
* @return the new adapter.
* @see org.eclipse.egf.model.types.TypeElement
* @generated
*/
public Adapter createTypeElementAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.egf.model.types.Type <em>Type</em>}'.
* <!-- begin-user-doc -->
* 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.
* <!-- end-user-doc -->
*
* @return the new adapter.
* @see org.eclipse.egf.model.types.Type
* @generated
*/
public Adapter createTypeAdapter() {
return null;
}
/**
* Creates a new adapter for an object of class '{@link org.eclipse.egf.model.types.TypeObject <em>Type Object</em>}'.
* <!-- begin-user-doc -->
* 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.
* <!-- end-user-doc -->
*
* @return the new adapter.
* @see org.eclipse.egf.model.types.TypeObject
* @generated
*/
public Adapter createTypeObjectAdapter() {
return null;
}
/**
* Creates a new adapter for the default case.
* <!-- begin-user-doc -->
* This default implementation returns null.
* <!-- end-user-doc -->
*
* @return the new adapter.
* @generated
*/
public Adapter createEObjectAdapter() {
return null;
}
} // DomainAdapterFactory