/**
* Copyright (c) 2009-2010, University of Augsburg, Germany <www.ds-lab.org>
*
* 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:
* Christian Saad, Programming distributed Systems Lab, University of Augsburg
* - initial API and implementation
*/
package de.uniAugsburg.MAF.models.mafproject.types.impl;
import de.uniAugsburg.MAF.models.mafproject.projectset.impl.ProjectSetElementImpl;
import de.uniAugsburg.MAF.models.mafproject.types.InputResource;
import de.uniAugsburg.MAF.models.mafproject.types.TypesPackage;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Input Resource</b></em>'.
* <!-- end-user-doc -->
* <p>
* </p>
*
* @generated
*/
public abstract class InputResourceImpl extends ProjectSetElementImpl implements InputResource
{
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected InputResourceImpl()
{
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected EClass eStaticClass()
{
return TypesPackage.Literals.INPUT_RESOURCE;
}
} //InputResourceImpl
|