/* * JBoss, Home of Professional Open Source. * * See the LEGAL.txt file distributed with this work for information regarding copyright ownership and licensing. * * See the AUTHORS.txt file distributed with this work for a full listing of individual contributors. */ package org.teiid.designer.metamodels.transformation; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> A representation of the model object '<em><b>Mapping Class Column</b></em>'. <!-- end-user-doc --> * <p> * The following features are supported: * <ul> * <li>{@link org.teiid.designer.metamodels.transformation.MappingClassColumn#getMappingClass <em>Mapping Class</em>}</li> * <li>{@link org.teiid.designer.metamodels.transformation.MappingClassColumn#getType <em>Type</em>}</li> * </ul> * </p> * * @see org.teiid.designer.metamodels.transformation.TransformationPackage#getMappingClassColumn() * @model * @generated * * @since 8.0 */ public interface MappingClassColumn extends MappingClassObject { /** * Returns the value of the '<em><b>Type</b></em>' reference. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Type</em>' attribute isn't clear, there really should be more of a description here... * </p> * <!-- end-user-doc --> * * @return the value of the '<em>Type</em>' reference. * @see #setType(EObject) * @see org.teiid.designer.metamodels.transformation.TransformationPackage#getMappingClassColumn_Type() * @model required="true" * @generated */ EObject getType(); /** * Sets the value of the '{@link org.teiid.designer.metamodels.transformation.MappingClassColumn#getType <em>Type</em>}' * reference. <!-- begin-user-doc --> <!-- end-user-doc --> * * @param value the new value of the '<em>Type</em>' reference. * @see #getType() * @generated */ void setType( EObject value ); /** * Returns the value of the '<em><b>Mapping Class</b></em>' container reference. It is bidirectional and its opposite is ' * {@link org.teiid.designer.metamodels.transformation.MappingClass#getColumns <em>Columns</em>}'. <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Mapping Class</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>Mapping Class</em>' container reference. * @see #setMappingClass(MappingClass) * @see org.teiid.designer.metamodels.transformation.TransformationPackage#getMappingClassColumn_MappingClass() * @see org.teiid.designer.metamodels.transformation.MappingClass#getColumns * @model opposite="columns" required="true" * @generated */ MappingClass getMappingClass(); /** * Sets the value of the '{@link org.teiid.designer.metamodels.transformation.MappingClassColumn#getMappingClass * <em>Mapping Class</em>}' container reference. <!-- begin-user-doc --> <!-- end-user-doc --> * * @param value the new value of the '<em>Mapping Class</em>' container reference. * @see #getMappingClass() * @generated */ void setMappingClass( MappingClass value ); } // MappingClassColumn