blob: c8e8125585ce5df83b4e283af8f3864047229ba9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2018 SAP AG and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* SAP AG - initial API and implementation
******************************************************************************
*/
package abapmapping;
import abapmapping.abapdictionary.AbapType;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Abap Class Implementation Annotation</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link abapmapping.AbapClassImplementationAnnotation#getKind <em>Kind</em>}</li>
* <li>{@link abapmapping.AbapClassImplementationAnnotation#getAbapType <em>Abap Type</em>}</li>
* </ul>
* </p>
*
* @see abapmapping.AbapmappingPackage#getAbapClassImplementationAnnotation()
* @model annotation="http://www.eclipse.org/emf/2002/Ecore/OCL AbapTypeMustBeUnstructured='self.kind = AbapClassKind::ABAP_TYPE implies\r\n self.abapType.oclIsKindOf(abapmapping::abapdictionary::UnstructuredAbapType)'"
* annotation="http://www.eclipse.org/emf/2002/Ecore constraints='AbapTypeMustBeUnstructured'"
* @generated
*/
public interface AbapClassImplementationAnnotation extends EObject {
/**
* Returns the value of the '<em><b>Kind</b></em>' attribute.
* The literals are from the enumeration {@link abapmapping.AbapClassKind}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Kind</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Kind</em>' attribute.
* @see abapmapping.AbapClassKind
* @see #setKind(AbapClassKind)
* @see abapmapping.AbapmappingPackage#getAbapClassImplementationAnnotation_Kind()
* @model unique="false" required="true" ordered="false"
* @generated
*/
AbapClassKind getKind();
/**
* Sets the value of the '{@link abapmapping.AbapClassImplementationAnnotation#getKind <em>Kind</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Kind</em>' attribute.
* @see abapmapping.AbapClassKind
* @see #getKind()
* @generated
*/
void setKind(AbapClassKind value);
/**
* Returns the value of the '<em><b>Abap Type</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Abap Type</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Abap Type</em>' reference.
* @see #setAbapType(AbapType)
* @see abapmapping.AbapmappingPackage#getAbapClassImplementationAnnotation_AbapType()
* @model required="true"
* @generated
*/
AbapType getAbapType();
/**
* Sets the value of the '{@link abapmapping.AbapClassImplementationAnnotation#getAbapType <em>Abap Type</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Abap Type</em>' reference.
* @see #getAbapType()
* @generated
*/
void setAbapType(AbapType value);
} // AbapClassImplementationAnnotation