blob: 4465877326706b97d8eb37627ad26d1a946747b2 [file] [log] [blame]
/**
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Based on ideas from Xtext, Xtend, Xcore
*
* Contributors:
* Joerg Riegel - Initial implementation
*
*/
package org.eclipse.osbp.xtext.datamartdsl;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Datamart Set Parameter Function</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.datamartdsl.DatamartSetParameterFunction#getSetFunction <em>Set Function</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.datamartdsl.DatamartSetParameterFunction#getParameter <em>Parameter</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getDatamartSetParameterFunction()
* @model
* @generated
*/
public interface DatamartSetParameterFunction extends DatamartSetFunctionInterface {
/**
* Returns the value of the '<em><b>Set Function</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.osbp.xtext.datamartdsl.SetParameterFunctionEnum}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Set Function</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Set Function</em>' attribute.
* @see org.eclipse.osbp.xtext.datamartdsl.SetParameterFunctionEnum
* @see #setSetFunction(SetParameterFunctionEnum)
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getDatamartSetParameterFunction_SetFunction()
* @model unique="false"
* @generated
*/
SetParameterFunctionEnum getSetFunction();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datamartdsl.DatamartSetParameterFunction#getSetFunction <em>Set Function</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Set Function</em>' attribute.
* @see org.eclipse.osbp.xtext.datamartdsl.SetParameterFunctionEnum
* @see #getSetFunction()
* @generated
*/
void setSetFunction(SetParameterFunctionEnum value);
/**
* Returns the value of the '<em><b>Parameter</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Parameter</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>Parameter</em>' containment reference.
* @see #setParameter(DatamartFunctionIntParameter)
* @see org.eclipse.osbp.xtext.datamartdsl.DatamartDSLPackage#getDatamartSetParameterFunction_Parameter()
* @model containment="true"
* @generated
*/
DatamartFunctionIntParameter getParameter();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datamartdsl.DatamartSetParameterFunction#getParameter <em>Parameter</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Parameter</em>' containment reference.
* @see #getParameter()
* @generated
*/
void setParameter(DatamartFunctionIntParameter value);
} // DatamartSetParameterFunction