RDL-Editor/com.minres.rdl.parent/com.minres.rdl/src-gen/com/minres/rdl/rdl/EnumDefinition.java

52 lines
1.3 KiB
Java

/**
* generated by Xtext 2.14.0
*/
package com.minres.rdl.rdl;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Enum Definition</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link com.minres.rdl.rdl.EnumDefinition#getBody <em>Body</em>}</li>
* </ul>
*
* @see com.minres.rdl.rdl.RdlPackage#getEnumDefinition()
* @model
* @generated
*/
public interface EnumDefinition extends Entity
{
/**
* Returns the value of the '<em><b>Body</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Body</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Body</em>' containment reference.
* @see #setBody(EnumBody)
* @see com.minres.rdl.rdl.RdlPackage#getEnumDefinition_Body()
* @model containment="true"
* @generated
*/
EnumBody getBody();
/**
* Sets the value of the '{@link com.minres.rdl.rdl.EnumDefinition#getBody <em>Body</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Body</em>' containment reference.
* @see #getBody()
* @generated
*/
void setBody(EnumBody value);
} // EnumDefinition