/** * <copyright> * </copyright> * * $Id$ */ package org.talend.core.model.properties; import org.eclipse.emf.ecore.EObject; import org.talend.designer.core.model.utils.emf.talendfile.ParametersType; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Implicit Context Settings</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.talend.core.model.properties.ImplicitContextSettings#getParameters <em>Parameters</em>}</li> * </ul> * </p> * * @see org.talend.core.model.properties.PropertiesPackage#getImplicitContextSettings() * @model * @generated */ public interface ImplicitContextSettings extends EObject { /** * Returns the value of the '<em><b>Parameters</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Parameters</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Parameters</em>' containment reference. * @see #setParameters(ParametersType) * @see org.talend.core.model.properties.PropertiesPackage#getImplicitContextSettings_Parameters() * @model containment="true" * extendedMetaData="kind='element' name='Parameters' namespace='##targetNamespace'" * @generated */ ParametersType getParameters(); /** * Sets the value of the '{@link org.talend.core.model.properties.ImplicitContextSettings#getParameters <em>Parameters</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Parameters</em>' containment reference. * @see #getParameters() * @generated */ void setParameters(ParametersType value); } // ImplicitContextSettings