/** * <copyright> * </copyright> * * $Id$ */ package fr.inria.atlanmod.collaboro.history; import org.eclipse.emf.cdo.CDOObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Id Element</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link fr.inria.atlanmod.collaboro.history.IdElement#getId <em>Id</em>}</li> * </ul> * </p> * * @see fr.inria.atlanmod.collaboro.history.HistoryPackage#getIdElement() * @model abstract="true" * @extends CDOObject * @generated */ public interface IdElement 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 #setId(String) * @see fr.inria.atlanmod.collaboro.history.HistoryPackage#getIdElement_Id() * @model * @generated */ String getId(); /** * Sets the value of the '{@link fr.inria.atlanmod.collaboro.history.IdElement#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(String value); } // IdElement