/** * <copyright> * </copyright> * * $Id: Entity.java,v 1.7 2008/03/12 07:30:06 mtaal Exp $ */ package org.eclipse.emf.teneo.annotations.pannotation; /** * <!-- begin-user-doc --> A representation of the model object '<em><b>Entity</b></em>'. <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.emf.teneo.annotations.pannotation.Entity#getName <em>Name</em>}</li> * <li>{@link org.eclipse.emf.teneo.annotations.pannotation.Entity#getExtends <em>Extends</em>}</li> * </ul> * </p> * * @see org.eclipse.emf.teneo.annotations.pannotation.PannotationPackage#getEntity() * @model annotation="teneo/internal/Target 0='EClass'" * annotation="http://www.eclipse.org/emf/2002/Ecore constraints='NoInterface NoReservedName'" * @generated */ public interface Entity extends PAnnotation { /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, there really should be more of a description * here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see org.eclipse.emf.teneo.annotations.pannotation.PannotationPackage#getEntity_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.emf.teneo.annotations.pannotation.Entity#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the '<em><b>Extends</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Extends</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Extends</em>' attribute. * @see #setExtends(String) * @see org.eclipse.emf.teneo.annotations.pannotation.PannotationPackage#getEntity_Extends() * @model * @generated */ String getExtends(); /** * Sets the value of the '{@link org.eclipse.emf.teneo.annotations.pannotation.Entity#getExtends <em>Extends</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Extends</em>' attribute. * @see #getExtends() * @generated */ void setExtends(String value); } // Entity