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

106 lines
3.9 KiB
Java

/**
* generated by Xtext 2.26.0
*/
package com.minres.rdl.rdl;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Root</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link com.minres.rdl.rdl.Root#getIncludes <em>Includes</em>}</li>
* <li>{@link com.minres.rdl.rdl.Root#getComponentDefinitions <em>Component Definitions</em>}</li>
* <li>{@link com.minres.rdl.rdl.Root#getEnumDefinitions <em>Enum Definitions</em>}</li>
* <li>{@link com.minres.rdl.rdl.Root#getInstantiations <em>Instantiations</em>}</li>
* <li>{@link com.minres.rdl.rdl.Root#getPropertyAssignments <em>Property Assignments</em>}</li>
* <li>{@link com.minres.rdl.rdl.Root#getPropertyDefinitions <em>Property Definitions</em>}</li>
* </ul>
*
* @see com.minres.rdl.rdl.RdlPackage#getRoot()
* @model
* @generated
*/
public interface Root extends EObject
{
/**
* Returns the value of the '<em><b>Includes</b></em>' containment reference list.
* The list contents are of type {@link com.minres.rdl.rdl.Include}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Includes</em>' containment reference list.
* @see com.minres.rdl.rdl.RdlPackage#getRoot_Includes()
* @model containment="true"
* @generated
*/
EList<Include> getIncludes();
/**
* Returns the value of the '<em><b>Component Definitions</b></em>' containment reference list.
* The list contents are of type {@link com.minres.rdl.rdl.ComponentDefinition}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Component Definitions</em>' containment reference list.
* @see com.minres.rdl.rdl.RdlPackage#getRoot_ComponentDefinitions()
* @model containment="true"
* @generated
*/
EList<ComponentDefinition> getComponentDefinitions();
/**
* Returns the value of the '<em><b>Enum Definitions</b></em>' containment reference list.
* The list contents are of type {@link com.minres.rdl.rdl.EnumDefinition}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Enum Definitions</em>' containment reference list.
* @see com.minres.rdl.rdl.RdlPackage#getRoot_EnumDefinitions()
* @model containment="true"
* @generated
*/
EList<EnumDefinition> getEnumDefinitions();
/**
* Returns the value of the '<em><b>Instantiations</b></em>' containment reference list.
* The list contents are of type {@link com.minres.rdl.rdl.Instantiation}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Instantiations</em>' containment reference list.
* @see com.minres.rdl.rdl.RdlPackage#getRoot_Instantiations()
* @model containment="true"
* @generated
*/
EList<Instantiation> getInstantiations();
/**
* Returns the value of the '<em><b>Property Assignments</b></em>' containment reference list.
* The list contents are of type {@link com.minres.rdl.rdl.PropertyAssignment}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Property Assignments</em>' containment reference list.
* @see com.minres.rdl.rdl.RdlPackage#getRoot_PropertyAssignments()
* @model containment="true"
* @generated
*/
EList<PropertyAssignment> getPropertyAssignments();
/**
* Returns the value of the '<em><b>Property Definitions</b></em>' containment reference list.
* The list contents are of type {@link com.minres.rdl.rdl.PropertyDefinition}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the value of the '<em>Property Definitions</em>' containment reference list.
* @see com.minres.rdl.rdl.RdlPackage#getRoot_PropertyDefinitions()
* @model containment="true"
* @generated
*/
EList<PropertyDefinition> getPropertyDefinitions();
} // Root