blob: ef0e2a88a29b9c509223653d2d19646280f4819e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2011 SAP AG and others.
* 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 AG - initial API and implementation
******************************************************************************
* $Id: SignatureOwner.java,v 1.2 2011/03/05 21:37:37 auhl Exp $
*/
package data.classes;
import modelmanagement.NamedElement;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Signature Owner</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link data.classes.SignatureOwner#getOwnedSignatures <em>Owned Signatures</em>}</li>
* </ul>
* </p>
*
* @see data.classes.ClassesPackage#getSignatureOwner()
* @model
* @generated
*/
public interface SignatureOwner extends NamedElement {
/**
* Returns the value of the '<em><b>Owned Signatures</b></em>' containment reference list.
* The list contents are of type {@link data.classes.MethodSignature}.
* It is bidirectional and its opposite is '{@link data.classes.MethodSignature#getOwner <em>Owner</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Owned Signatures</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>Owned Signatures</em>' containment reference list.
* @see data.classes.ClassesPackage#getSignatureOwner_OwnedSignatures()
* @see data.classes.MethodSignature#getOwner
* @model opposite="owner" containment="true" resolveProxies="true"
* @generated
*/
EList<MethodSignature> getOwnedSignatures();
} // SignatureOwner