/** * <copyright> * </copyright> * * $Id: IdBag.java,v 1.6 2007/07/04 19:31:48 mtaal Exp $ */ package org.eclipse.emf.teneo.hibernate.hbannotation; /** * <!-- begin-user-doc --> A representation of the model object '<em><b>Id Bag</b></em>'. <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.emf.teneo.hibernate.hbannotation.IdBag#getGenerator <em>Generator</em>}</li> * <li>{@link org.eclipse.emf.teneo.hibernate.hbannotation.IdBag#getType <em>Type</em>}</li> * <li>{@link org.eclipse.emf.teneo.hibernate.hbannotation.IdBag#getTable <em>Table</em>}</li> * </ul> * </p> * * @see org.eclipse.emf.teneo.hibernate.hbannotation.HbannotationPackage#getIdBag() * @model annotation="http://annotation.elver.org/internal/Target 0='EStructuralFeature'" * @generated */ public interface IdBag extends HbAnnotation { /** * Returns the value of the '<em><b>Generator</b></em>' attribute. * The default value is <code>"increment"</code>. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Generator</em>' attribute isn't clear, there really should be more of a * description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Generator</em>' attribute. * @see #setGenerator(String) * @see org.eclipse.emf.teneo.hibernate.hbannotation.HbannotationPackage#getIdBag_Generator() * @model default="increment" * @generated */ String getGenerator(); /** * Sets the value of the '{@link org.eclipse.emf.teneo.hibernate.hbannotation.IdBag#getGenerator <em>Generator</em>}' attribute. * <!-- begin-user-doc --> <!-- end-user-doc --> * @param value the new value of the '<em>Generator</em>' attribute. * @see #getGenerator() * @generated */ void setGenerator(String value); /** * Returns the value of the '<em><b>Type</b></em>' attribute. The default value is <code>"long"</code>. <!-- * begin-user-doc --> * <p> * If the meaning of the '<em>Type</em>' attribute isn't clear, there really should be more of a description * here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Type</em>' attribute. * @see #setType(String) * @see org.eclipse.emf.teneo.hibernate.hbannotation.HbAnnotationPackage#getIdBag_Type() * @model default="long" * @generated */ String getType(); /** * Sets the value of the '{@link org.eclipse.emf.teneo.hibernate.hbannotation.IdBag#getType <em>Type</em>}' attribute. * <!-- begin-user-doc --> <!-- end-user-doc --> * @param value the new value of the '<em>Type</em>' attribute. * @see #getType() * @generated */ void setType(String value); /** * Returns the value of the '<em><b>Table</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Table</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Table</em>' attribute. * @see #setTable(String) * @see org.eclipse.emf.teneo.hibernate.hbannotation.HbannotationPackage#getIdBag_Table() * @model * @generated */ String getTable(); /** * Sets the value of the '{@link org.eclipse.emf.teneo.hibernate.hbannotation.IdBag#getTable <em>Table</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Table</em>' attribute. * @see #getTable() * @generated */ void setTable(String value); } // IdBag