/** * generated by Xtext 2.26.0 */ package com.minres.rdl.rdl; /** * * A representation of the model object 'Enum Definition'. * * *

* The following features are supported: *

* * * @see com.minres.rdl.rdl.RdlPackage#getEnumDefinition() * @model * @generated */ public interface EnumDefinition extends Entity { /** * Returns the value of the 'Body' containment reference. * * * @return the value of the 'Body' 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 Body}' containment reference. * * * @param value the new value of the 'Body' containment reference. * @see #getBody() * @generated */ void setBody(EnumBody value); } // EnumDefinition