blob: 1901f8d01445e5ad0e8e75935f519b485db9e32a [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;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>IAnnotation Target</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.ogee.model.odata.IAnnotationTarget#getAnnotations <em>Annotations</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.ogee.model.odata.OdataPackage#getIAnnotationTarget()
* @model interface="true" abstract="true"
* @generated
*/
public interface IAnnotationTarget extends EObject {
/**
* Returns the value of the '<em><b>Annotations</b></em>' reference list.
* The list contents are of type {@link org.eclipse.ogee.model.odata.Annotation}.
* It is bidirectional and its opposite is '{@link org.eclipse.ogee.model.odata.Annotation#getTarget <em>Target</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Annotations</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Annotations</em>' reference list.
* @see org.eclipse.ogee.model.odata.OdataPackage#getIAnnotationTarget_Annotations()
* @see org.eclipse.ogee.model.odata.Annotation#getTarget
* @model opposite="target"
* @generated
*/
EList<Annotation> getAnnotations();
} // IAnnotationTarget