/******************************************************************************* * Copyright (c) 2010-2015 Henshin developers. 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: * TU Berlin, University of Luxembourg, SES S.A. *******************************************************************************/ /** */ package source; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Association</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link source.Association#getName <em>Name</em>}</li> * <li>{@link source.Association#getSrc <em>Src</em>}</li> * <li>{@link source.Association#getDest <em>Dest</em>}</li> * <li>{@link source.Association#getLeftMultiplicity <em>Left Multiplicity</em>}</li> * </ul> * </p> * * @see source.SourcePackage#getAssociation() * @model * @generated */ public interface Association extends EObject { /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see source.SourcePackage#getAssociation_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link source.Association#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the '<em><b>Src</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Src</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Src</em>' reference. * @see #setSrc(source.Class) * @see source.SourcePackage#getAssociation_Src() * @model required="true" * @generated */ source.Class getSrc(); /** * Sets the value of the '{@link source.Association#getSrc <em>Src</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Src</em>' reference. * @see #getSrc() * @generated */ void setSrc(source.Class value); /** * Returns the value of the '<em><b>Dest</b></em>' reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Dest</em>' reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Dest</em>' reference. * @see #setDest(source.Class) * @see source.SourcePackage#getAssociation_Dest() * @model required="true" * @generated */ source.Class getDest(); /** * Sets the value of the '{@link source.Association#getDest <em>Dest</em>}' reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Dest</em>' reference. * @see #getDest() * @generated */ void setDest(source.Class value); /** * Returns the value of the '<em><b>Left Multiplicity</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Left Multiplicity</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Left Multiplicity</em>' attribute. * @see #setLeftMultiplicity(int) * @see source.SourcePackage#getAssociation_LeftMultiplicity() * @model * @generated */ int getLeftMultiplicity(); /** * Sets the value of the '{@link source.Association#getLeftMultiplicity <em>Left Multiplicity</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Left Multiplicity</em>' attribute. * @see #getLeftMultiplicity() * @generated */ void setLeftMultiplicity(int value); } // Association