blob: d256d355a5727e5dd934b76dbb6a988f7d1cca65 [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 simpleuml2rdbms.uml2rdbms;
import org.eclipse.emf.ecore.EObject;
import simpleuml2rdbms.rdbms.Column;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>To Column</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link simpleuml2rdbms.uml2rdbms.ToColumn#getColumn <em>Column</em>}</li>
* </ul>
*
* @see simpleuml2rdbms.uml2rdbms.UML2RDBMSPackage#getToColumn()
* @model abstract="true"
* @generated
*/
public interface ToColumn extends EObject {
/**
* Returns the value of the '<em><b>Column</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Column</em>' reference 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.
* @see #setColumn(Column)
* @see simpleuml2rdbms.uml2rdbms.UML2RDBMSPackage#getToColumn_Column()
* @model required="true"
* annotation="http://schema.omg.org/spec/MOF/2.0/emof.xml#Property.oppositeUpper body='1'"
* annotation="http://schema.omg.org/spec/MOF/2.0/emof.xml#Property.oppositeRoleName body='middle'"
* @generated
*/
Column getColumn();
/**
* Sets the value of the '{@link simpleuml2rdbms.uml2rdbms.ToColumn#getColumn <em>Column</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Column</em>' reference.
* @see #getColumn()
* @generated
*/
void setColumn(Column value);
} // ToColumn