blob: c3f85e07d58f4037fd2000f0f339faac4f86a43b [file] [log] [blame]
/**
* Copyright (c) 2015, 2016 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 org.eclipse.qvtd.xtext.qvtcore.tests.uml2rdbms.simplerdbms;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Schema</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.qvtd.xtext.qvtcore.tests.uml2rdbms.simplerdbms.Schema#getTables <em>Tables</em>}</li>
* </ul>
*
* @see org.eclipse.qvtd.xtext.qvtcore.tests.uml2rdbms.simplerdbms.SimplerdbmsPackage#getSchema()
* @model
* @generated
*/
public interface Schema extends RModelElement {
/**
* Returns the value of the '<em><b>Tables</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.qvtd.xtext.qvtcore.tests.uml2rdbms.simplerdbms.Table}.
* It is bidirectional and its opposite is '{@link org.eclipse.qvtd.xtext.qvtcore.tests.uml2rdbms.simplerdbms.Table#getSchema <em>Schema</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Tables</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Tables</em>' containment reference list.
* @see org.eclipse.qvtd.xtext.qvtcore.tests.uml2rdbms.simplerdbms.SimplerdbmsPackage#getSchema_Tables()
* @see org.eclipse.qvtd.xtext.qvtcore.tests.uml2rdbms.simplerdbms.Table#getSchema
* @model opposite="schema" containment="true"
* @generated
*/
EList<Table> getTables();
} // Schema