mirror of https://github.com/Minres/RDL-Editor.git
47 lines
1.3 KiB
Java
47 lines
1.3 KiB
Java
/**
|
|
* generated by Xtext 2.12.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>Property Usage</b></em>'.
|
|
* <!-- end-user-doc -->
|
|
*
|
|
* <p>
|
|
* The following features are supported:
|
|
* </p>
|
|
* <ul>
|
|
* <li>{@link com.minres.rdl.rdl.PropertyUsage#getComponents <em>Components</em>}</li>
|
|
* </ul>
|
|
*
|
|
* @see com.minres.rdl.rdl.RdlPackage#getPropertyUsage()
|
|
* @model
|
|
* @generated
|
|
*/
|
|
public interface PropertyUsage extends EObject
|
|
{
|
|
/**
|
|
* Returns the value of the '<em><b>Components</b></em>' attribute list.
|
|
* The list contents are of type {@link com.minres.rdl.rdl.PropertyComponent}.
|
|
* The literals are from the enumeration {@link com.minres.rdl.rdl.PropertyComponent}.
|
|
* <!-- begin-user-doc -->
|
|
* <p>
|
|
* If the meaning of the '<em>Components</em>' attribute list isn't clear,
|
|
* there really should be more of a description here...
|
|
* </p>
|
|
* <!-- end-user-doc -->
|
|
* @return the value of the '<em>Components</em>' attribute list.
|
|
* @see com.minres.rdl.rdl.PropertyComponent
|
|
* @see com.minres.rdl.rdl.RdlPackage#getPropertyUsage_Components()
|
|
* @model unique="false"
|
|
* @generated
|
|
*/
|
|
EList<PropertyComponent> getComponents();
|
|
|
|
} // PropertyUsage
|