/**
* 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.attrm;
import de.uniAugsburg.MAF.models.attrmm.attribution.AttributionElement;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Attribution Instantiation</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link de.uniAugsburg.MAF.models.attrm.AttributionInstantiation#getAttrInstances <em>Attr Instances</em>}</li>
* </ul>
* </p>
*
* @see de.uniAugsburg.MAF.models.attrm.attrmPackage#getAttributionInstantiation()
* @model
* @generated
*/
public interface AttributionInstantiation extends AttributionElement
{
/**
* Returns the value of the '<em><b>Attr Instances</b></em>' containment reference list.
* The list contents are of type {@link de.uniAugsburg.MAF.models.attrm.AttrInstance}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Attr Instances</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Attr Instances</em>' containment reference list.
* @see de.uniAugsburg.MAF.models.attrm.attrmPackage#getAttributionInstantiation_AttrInstances()
* @model containment="true"
* @generated
*/
EList<AttrInstance> getAttrInstances();
} // AttributionInstantiation
|