/** */ package com.robotoworks.mechanoid.net.netModel; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Model</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link com.robotoworks.mechanoid.net.netModel.Model#getPackageName <em>Package Name</em>}</li> * <li>{@link com.robotoworks.mechanoid.net.netModel.Model#getDeclarations <em>Declarations</em>}</li> * </ul> * </p> * * @see com.robotoworks.mechanoid.net.netModel.NetModelPackage#getModel() * @model * @generated */ public interface Model extends EObject { /** * Returns the value of the '<em><b>Package Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Package Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Package Name</em>' attribute. * @see #setPackageName(String) * @see com.robotoworks.mechanoid.net.netModel.NetModelPackage#getModel_PackageName() * @model * @generated */ String getPackageName(); /** * Sets the value of the '{@link com.robotoworks.mechanoid.net.netModel.Model#getPackageName <em>Package Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Package Name</em>' attribute. * @see #getPackageName() * @generated */ void setPackageName(String value); /** * Returns the value of the '<em><b>Declarations</b></em>' containment reference list. * The list contents are of type {@link com.robotoworks.mechanoid.net.netModel.Declaration}. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Declarations</em>' containment reference list isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Declarations</em>' containment reference list. * @see com.robotoworks.mechanoid.net.netModel.NetModelPackage#getModel_Declarations() * @model containment="true" * @generated */ EList<Declaration> getDeclarations(); } // Model