/** * <copyright> * </copyright> * * $Id$ */ package net.sf.orcc.backends.llvm.tta.architecture; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Implementation</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link net.sf.orcc.backends.llvm.tta.architecture.Implementation#getHdbFile <em>Hdb File</em>}</li> * <li>{@link net.sf.orcc.backends.llvm.tta.architecture.Implementation#getId <em>Id</em>}</li> * </ul> * </p> * * @see net.sf.orcc.backends.llvm.tta.architecture.ArchitecturePackage#getImplementation() * @model * @generated */ public interface Implementation extends EObject { /** * Returns the value of the '<em><b>Hdb File</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Hdb File</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Hdb File</em>' attribute. * @see #setHdbFile(String) * @see net.sf.orcc.backends.llvm.tta.architecture.ArchitecturePackage#getImplementation_HdbFile() * @model * @generated */ String getHdbFile(); /** * Sets the value of the '{@link net.sf.orcc.backends.llvm.tta.architecture.Implementation#getHdbFile <em>Hdb File</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Hdb File</em>' attribute. * @see #getHdbFile() * @generated */ void setHdbFile(String value); /** * Returns the value of the '<em><b>Id</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Id</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Id</em>' attribute. * @see #setId(int) * @see net.sf.orcc.backends.llvm.tta.architecture.ArchitecturePackage#getImplementation_Id() * @model * @generated */ int getId(); /** * Sets the value of the '{@link net.sf.orcc.backends.llvm.tta.architecture.Implementation#getId <em>Id</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Id</em>' attribute. * @see #getId() * @generated */ void setId(int value); } // Implementation