/** * * * * $Id: AutoID.java,v 1.1 2007/07/11 18:59:48 mtaal Exp $ */ package org.eclipse.emf.teneo.samples.emf.annotations.id; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Auto ID'. * * *

* The following features are supported: *

*

* * @see org.eclipse.emf.teneo.samples.emf.annotations.id.IdPackage#getAutoID() * @model * @generated */ public interface AutoID extends EObject { /** * Returns the value of the 'Auto ID' attribute. * *

* If the meaning of the 'Auto ID' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Auto ID' attribute. * @see #setAutoID(long) * @see org.eclipse.emf.teneo.samples.emf.annotations.id.IdPackage#getAutoID_AutoID() * @model id="true" dataType="org.eclipse.emf.ecore.xml.type.Long" required="true" * @generated */ long getAutoID(); /** * Sets the value of the '{@link org.eclipse.emf.teneo.samples.emf.annotations.id.AutoID#getAutoID Auto ID}' attribute. * * * @param value the new value of the 'Auto ID' attribute. * @see #getAutoID() * @generated */ void setAutoID(long value); /** * Returns the value of the 'Name' attribute. * *

* If the meaning of the 'Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.eclipse.emf.teneo.samples.emf.annotations.id.IdPackage#getAutoID_Name() * @model dataType="org.eclipse.emf.ecore.xml.type.String" * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.emf.teneo.samples.emf.annotations.id.AutoID#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); } // AutoID