| /** |
| * <copyright> |
| * </copyright> |
| * |
| * $Id: BaseComponent.java,v 1.1 2006/09/21 00:56:52 mtaal Exp $ |
| */ |
| package main; |
| |
| import org.eclipse.emf.ecore.EObject; |
| |
| /** |
| * <!-- begin-user-doc --> A representation of the model object '<em><b>Base Component</b></em>'. |
| * <!-- end-user-doc --> |
| * |
| * <p> |
| * The following features are supported: |
| * <ul> |
| * <li>{@link main.BaseComponent#getGroup <em>Group</em>}</li> |
| * <li>{@link main.BaseComponent#getName <em>Name</em>}</li> |
| * <li>{@link main.BaseComponent#getId <em>Id</em>}</li> |
| * </ul> |
| * </p> |
| * |
| * @see main.MainPackage#getBaseComponent() |
| * @model |
| * @generated |
| */ |
| public interface BaseComponent extends EObject { |
| /** |
| * Returns the value of the '<em><b>Group</b></em>' container reference. It is bidirectional and |
| * its opposite is '{@link main.BaseGroup#getComponents <em>Components</em>}'. <!-- begin-user-doc |
| * --> |
| * <p> |
| * If the meaning of the '<em>Group</em>' container reference isn't clear, there really should be |
| * more of a description here... |
| * </p> |
| * <!-- end-user-doc --> |
| * |
| * @return the value of the '<em>Group</em>' container reference. |
| * @see #setGroup(BaseGroup) |
| * @see main.MainPackage#getBaseComponent_Group() |
| * @see main.BaseGroup#getComponents |
| * @model opposite="components" |
| * @generated |
| */ |
| BaseGroup getGroup(); |
| |
| /** |
| * Sets the value of the '{@link main.BaseComponent#getGroup <em>Group</em>}' container reference. |
| * <!-- begin-user-doc --> <!-- end-user-doc --> |
| * |
| * @param value |
| * the new value of the '<em>Group</em>' container reference. |
| * @see #getGroup() |
| * @generated |
| */ |
| void setGroup(BaseGroup value); |
| |
| /** |
| * Returns the value of the '<em><b>Name</b></em>' attribute. <!-- begin-user-doc --> |
| * <p> |
| * If the meaning of the '<em>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>Name</em>' attribute. |
| * @see #setName(String) |
| * @see main.MainPackage#getBaseComponent_Name() |
| * @model |
| * @generated |
| */ |
| String getName(); |
| |
| /** |
| * Sets the value of the '{@link main.BaseComponent#getName <em>Name</em>}' attribute. <!-- |
| * begin-user-doc --> <!-- end-user-doc --> |
| * |
| * @param value |
| * the new value of the '<em>Name</em>' attribute. |
| * @see #getName() |
| * @generated |
| */ |
| void setName(String value); |
| |
| /** |
| * Returns the value of the '<em><b>Id</b></em>' attribute. <!-- begin-user-doc --> |
| * <p> |
| * If the meaning of the '<em>Id</em>' attribute isn't clear, there really should be more of a |
| * description here... |
| * </p> |
| * <!-- end-user-doc --> |
| * |
| * @return the value of the '<em>Id</em>' attribute. |
| * @see #setId(Long) |
| * @see main.MainPackage#getBaseComponent_Id() |
| * @model |
| * @generated |
| */ |
| Long getId(); |
| |
| /** |
| * Sets the value of the '{@link main.BaseComponent#getId <em>Id</em>}' attribute. <!-- |
| * begin-user-doc --> <!-- end-user-doc --> |
| * |
| * @param value |
| * the new value of the '<em>Id</em>' attribute. |
| * @see #getId() |
| * @generated |
| */ |
| void setId(Long value); |
| |
| } // BaseComponent |