/* * 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.jdbc; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Source Property</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.teiid.designer.jdbc.JdbcSourceProperty#getSource <em>Source</em>}</li> * <li>{@link org.teiid.designer.jdbc.JdbcSourceProperty#getName <em>Name</em>}</li> * <li>{@link org.teiid.designer.jdbc.JdbcSourceProperty#getValue <em>Value</em>}</li> * </ul> * </p> * * @see org.teiid.designer.jdbc.JdbcPackage#getJdbcSourceProperty() * @model * @generated * * @since 8.0 */ public interface JdbcSourceProperty extends EObject{ /** * Returns the value of the '<em><b>Name</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Name</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Name</em>' attribute. * @see #setName(String) * @see org.teiid.designer.jdbc.JdbcPackage#getJdbcSourceProperty_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.teiid.designer.jdbc.JdbcSourceProperty#getName <em>Name</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Name</em>' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the '<em><b>Value</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Value</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Value</em>' attribute. * @see #setValue(String) * @see org.teiid.designer.jdbc.JdbcPackage#getJdbcSourceProperty_Value() * @model * @generated */ String getValue(); /** * Sets the value of the '{@link org.teiid.designer.jdbc.JdbcSourceProperty#getValue <em>Value</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Value</em>' attribute. * @see #getValue() * @generated */ void setValue(String value); /** * Returns the value of the '<em><b>Source</b></em>' container reference. * It is bidirectional and its opposite is '{@link org.teiid.designer.jdbc.JdbcSource#getProperties <em>Properties</em>}'. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Source</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>Source</em>' container reference. * @see #setSource(JdbcSource) * @see org.teiid.designer.jdbc.JdbcPackage#getJdbcSourceProperty_Source() * @see org.teiid.designer.jdbc.JdbcSource#getProperties * @model opposite="properties" * @generated */ JdbcSource getSource(); /** * Sets the value of the '{@link org.teiid.designer.jdbc.JdbcSourceProperty#getSource <em>Source</em>}' container reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Source</em>' container reference. * @see #getSource() * @generated */ void setSource(JdbcSource value); } // JdbcSourceProperty