blob: ce2f872dbc32c29d9c51ff2ca6f625891f096cd8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012-2014 SAP SE.
* 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:
* SAP SE - initial API and implementation and/or initial documentation
*
*******************************************************************************/
/**
*/
package org.eclipse.ogee.model.odata;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Association Set</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.ogee.model.odata.AssociationSet#getAssociation <em>Association</em>}</li>
* <li>{@link org.eclipse.ogee.model.odata.AssociationSet#getName <em>Name</em>}</li>
* <li>{@link org.eclipse.ogee.model.odata.AssociationSet#getEnds <em>Ends</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.ogee.model.odata.OdataPackage#getAssociationSet()
* @model
* @generated
*/
public interface AssociationSet extends IAnnotationTarget, IDocumentable {
/**
* Returns the value of the '<em><b>Association</b></em>' reference.
* It is bidirectional and its opposite is '{@link org.eclipse.ogee.model.odata.Association#getAssociationSets <em>Association Sets</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Association</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Association</em>' reference.
* @see #setAssociation(Association)
* @see org.eclipse.ogee.model.odata.OdataPackage#getAssociationSet_Association()
* @see org.eclipse.ogee.model.odata.Association#getAssociationSets
* @model opposite="associationSets" required="true"
* @generated
*/
Association getAssociation();
/**
* Sets the value of the '{@link org.eclipse.ogee.model.odata.AssociationSet#getAssociation <em>Association</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Association</em>' reference.
* @see #getAssociation()
* @generated
*/
void setAssociation(Association value);
/**
* 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 org.eclipse.ogee.model.odata.OdataPackage#getAssociationSet_Name()
* @model required="true"
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.ogee.model.odata.AssociationSet#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>Ends</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.ogee.model.odata.AssociationSetEnd}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Ends</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>Ends</em>' containment reference list.
* @see org.eclipse.ogee.model.odata.OdataPackage#getAssociationSet_Ends()
* @model containment="true" lower="2" upper="2"
* @generated
*/
EList<AssociationSetEnd> getEnds();
} // AssociationSet