/** * <copyright> * </copyright> * * $Id$ */ package org.obeonetwork.dsl.entityrelation; import org.eclipse.emf.cdo.CDOObject; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Logical Element</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.obeonetwork.dsl.entityrelation.LogicalElement#getID <em>ID</em>}</li> * <li>{@link org.obeonetwork.dsl.entityrelation.LogicalElement#getComments <em>Comments</em>}</li> * </ul> * </p> * * @see org.obeonetwork.dsl.entityrelation.EntityRelationPackage#getLogicalElement() * @model abstract="true" * @extends CDOObject * @generated */ public interface LogicalElement extends CDOObject { /** * 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 org.obeonetwork.dsl.entityrelation.EntityRelationPackage#getLogicalElement_ID() * @model id="true" transient="true" changeable="false" derived="true" * @generated */ String getID(); /** * Returns the value of the '<em><b>Comments</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Comments</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Comments</em>' attribute. * @see #setComments(String) * @see org.obeonetwork.dsl.entityrelation.EntityRelationPackage#getLogicalElement_Comments() * @model * @generated */ String getComments(); /** * Sets the value of the '{@link org.obeonetwork.dsl.entityrelation.LogicalElement#getComments <em>Comments</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Comments</em>' attribute. * @see #getComments() * @generated */ void setComments(String value); } // LogicalElement