/** * * * * $Id: SimpleID.java,v 1.2 2006/11/07 10:22:27 mtaal Exp $ */ package org.eclipse.emf.teneo.samples.emf.annotations.id; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Simple ID'. * * *

* The following features are supported: *

*

* * @see org.eclipse.emf.teneo.samples.emf.annotations.id.IdPackage#getSimpleID() * @model extendedMetaData="name='SimpleID' kind='elementOnly'" * @generated */ public interface SimpleID 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 #isSetAutoID() * @see #unsetAutoID() * @see #setAutoID(long) * @see org.eclipse.emf.teneo.samples.emf.annotations.id.IdPackage#getSimpleID_AutoID() * @model unique="false" unsettable="true" dataType="org.eclipse.emf.ecore.xml.type.Long" required="true" * annotation="teneo.jpa appinfo='\n\t\t\t\t@Id\n\t\t\t\t@GeneratedValue\n\t\t\t\t@Column(name=\"AUTOD\" nullable=\"false\")\n\t\t\t'" * extendedMetaData="kind='element' name='autoID'" * @generated */ long getAutoID(); /** * Sets the value of the '{@link org.eclipse.emf.teneo.samples.emf.annotations.id.SimpleID#getAutoID Auto ID}' attribute. * * * @param value the new value of the 'Auto ID' attribute. * @see #isSetAutoID() * @see #unsetAutoID() * @see #getAutoID() * @generated */ void setAutoID(long value); /** * Unsets the value of the '{@link org.eclipse.emf.teneo.samples.emf.annotations.id.SimpleID#getAutoID Auto ID}' attribute. * * * @see #isSetAutoID() * @see #getAutoID() * @see #setAutoID(long) * @generated */ void unsetAutoID(); /** * Returns whether the value of the '{@link org.eclipse.emf.teneo.samples.emf.annotations.id.SimpleID#getAutoID Auto ID}' attribute is set. * * * @return whether the value of the 'Auto ID' attribute is set. * @see #unsetAutoID() * @see #getAutoID() * @see #setAutoID(long) * @generated */ boolean isSetAutoID(); } // SimpleID