blob: 4ab6eb94b5512876d1b363359425bc1aad4a7aa7 [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.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Annotation</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.ogee.model.odata.Annotation#getQualifier <em>Qualifier</em>}</li>
* <li>{@link org.eclipse.ogee.model.odata.Annotation#getTarget <em>Target</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.ogee.model.odata.OdataPackage#getAnnotation()
* @model abstract="true"
* @generated
*/
public interface Annotation extends EObject {
/**
* Returns the value of the '<em><b>Qualifier</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Qualifier</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Qualifier</em>' attribute.
* @see #setQualifier(String)
* @see org.eclipse.ogee.model.odata.OdataPackage#getAnnotation_Qualifier()
* @model
* @generated
*/
String getQualifier();
/**
* Sets the value of the '{@link org.eclipse.ogee.model.odata.Annotation#getQualifier <em>Qualifier</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Qualifier</em>' attribute.
* @see #getQualifier()
* @generated
*/
void setQualifier(String value);
/**
* Returns the value of the '<em><b>Target</b></em>' reference.
* It is bidirectional and its opposite is '{@link org.eclipse.ogee.model.odata.IAnnotationTarget#getAnnotations <em>Annotations</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Target</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Target</em>' reference.
* @see #setTarget(IAnnotationTarget)
* @see org.eclipse.ogee.model.odata.OdataPackage#getAnnotation_Target()
* @see org.eclipse.ogee.model.odata.IAnnotationTarget#getAnnotations
* @model opposite="annotations" required="true"
* @generated
*/
IAnnotationTarget getTarget();
/**
* Sets the value of the '{@link org.eclipse.ogee.model.odata.Annotation#getTarget <em>Target</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Target</em>' reference.
* @see #getTarget()
* @generated
*/
void setTarget(IAnnotationTarget value);
} // Annotation