blob: 6a04602231b38c9f99ead2388631dcb0279114c9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Willink Transformations and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* E.D.Willink - initial API and implementation
*******************************************************************************/
/**
*/
package manualuml2rdbms.rdbms;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Key</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link manualuml2rdbms.rdbms.Key#getOwner <em>Owner</em>}</li>
* <li>{@link manualuml2rdbms.rdbms.Key#getColumn <em>Column</em>}</li>
* </ul>
*
* @see manualuml2rdbms.rdbms.RDBMSPackage#getKey()
* @model
* @generated
*/
public interface Key extends RModelElement {
/**
* Returns the value of the '<em><b>Owner</b></em>' container reference.
* It is bidirectional and its opposite is '{@link manualuml2rdbms.rdbms.Table#getKey <em>Key</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Owner</em>' container reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Owner</em>' container reference.
* @see #setOwner(Table)
* @see manualuml2rdbms.rdbms.RDBMSPackage#getKey_Owner()
* @see manualuml2rdbms.rdbms.Table#getKey
* @model opposite="key" required="true" transient="false"
* @generated
*/
Table getOwner();
/**
* Sets the value of the '{@link manualuml2rdbms.rdbms.Key#getOwner <em>Owner</em>}' container reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Owner</em>' container reference.
* @see #getOwner()
* @generated
*/
void setOwner(Table value);
/**
* Returns the value of the '<em><b>Column</b></em>' reference list.
* The list contents are of type {@link manualuml2rdbms.rdbms.Column}.
* It is bidirectional and its opposite is '{@link manualuml2rdbms.rdbms.Column#getKey <em>Key</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Column</em>' reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Column</em>' reference list.
* @see manualuml2rdbms.rdbms.RDBMSPackage#getKey_Column()
* @see manualuml2rdbms.rdbms.Column#getKey
* @model opposite="key"
* @generated
*/
EList<Column> getColumn();
} // Key