blob: cfb25ebf1bd9fc11250e24e8528e52b086666d53 [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.uml2rdbms;
import manualuml2rdbms.rdbms.Column;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- 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 manualuml2rdbms.uml2rdbms.ToColumn#getColumn <em>Column</em>}</li>
* </ul>
*
* @see manualuml2rdbms.uml2rdbms.UML2RDBMSPackage#getToColumn()
* @model
* @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 manualuml2rdbms.uml2rdbms.UML2RDBMSPackage#getToColumn_Column()
* @model
* @generated
*/
Column getColumn();
/**
* Sets the value of the '{@link manualuml2rdbms.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