/** * <copyright> * </copyright> * * $Id$ */ package com.hundsun.ares.studio.jres.model.database; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Foreign Key</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link com.hundsun.ares.studio.jres.model.database.ForeignKey#getTableName <em>Table Name</em>}</li> * <li>{@link com.hundsun.ares.studio.jres.model.database.ForeignKey#getFieldName <em>Field Name</em>}</li> * </ul> * </p> * * @see com.hundsun.ares.studio.jres.model.database.DatabasePackage#getForeignKey() * @model * @generated */ public interface ForeignKey extends EObject { /** * Returns the value of the '<em><b>Table Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Table 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>Table Name</em>' attribute. * @see #setTableName(String) * @see com.hundsun.ares.studio.jres.model.database.DatabasePackage#getForeignKey_TableName() * @model * @generated */ String getTableName(); /** * Sets the value of the '{@link com.hundsun.ares.studio.jres.model.database.ForeignKey#getTableName <em>Table Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Table Name</em>' attribute. * @see #getTableName() * @generated */ void setTableName(String value); /** * Returns the value of the '<em><b>Field Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Field 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>Field Name</em>' attribute. * @see #setFieldName(String) * @see com.hundsun.ares.studio.jres.model.database.DatabasePackage#getForeignKey_FieldName() * @model * @generated */ String getFieldName(); /** * Sets the value of the '{@link com.hundsun.ares.studio.jres.model.database.ForeignKey#getFieldName <em>Field Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Field Name</em>' attribute. * @see #getFieldName() * @generated */ void setFieldName(String value); } // ForeignKey