/** * <copyright> * </copyright> * * $Id$ */ package at.bestsolution.efxclipse.runtime.example.photoedit.model.photoedit; import org.eclipse.emf.cdo.CDOObject; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Base Object</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link at.bestsolution.efxclipse.runtime.example.photoedit.model.photoedit.BaseObject#getUuid <em>Uuid</em>}</li> * </ul> * </p> * * @see at.bestsolution.efxclipse.runtime.example.photoedit.model.photoedit.PhotoeditPackage#getBaseObject() * @model abstract="true" * @extends CDOObject * @generated */ public interface BaseObject extends CDOObject { /** * Returns the value of the '<em><b>Uuid</b></em>' attribute. * The default value is <code>""</code>. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Uuid</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Uuid</em>' attribute. * @see #setUuid(String) * @see at.bestsolution.efxclipse.runtime.example.photoedit.model.photoedit.PhotoeditPackage#getBaseObject_Uuid() * @model default="" * @generated */ String getUuid(); /** * Sets the value of the '{@link at.bestsolution.efxclipse.runtime.example.photoedit.model.photoedit.BaseObject#getUuid <em>Uuid</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Uuid</em>' attribute. * @see #getUuid() * @generated */ void setUuid(String value); } // BaseObject