blob: 31ca1db352038f64532e92a3fd1c8b5cbfc18e08 [file] [log] [blame]
/**
* Copyright (c) 2014, Loetz GmbH&Co.KG (Heidelberg)
* 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.datainterchange;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Data Interchange Predefined Expression</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangePredefinedExpression#getBean <em>Bean</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangePredefinedExpression#getBeanType <em>Bean Type</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.datainterchange.DataDSLPackage#getDataInterchangePredefinedExpression()
* @model
* @generated
*/
public interface DataInterchangePredefinedExpression extends DataInterchangeExpression {
/**
* Returns the value of the '<em><b>Bean</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.osbp.xtext.datainterchange.PredefinedBeanEnum}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Bean</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Bean</em>' attribute.
* @see org.eclipse.osbp.xtext.datainterchange.PredefinedBeanEnum
* @see #setBean(PredefinedBeanEnum)
* @see org.eclipse.osbp.xtext.datainterchange.DataDSLPackage#getDataInterchangePredefinedExpression_Bean()
* @model unique="false"
* @generated
*/
PredefinedBeanEnum getBean();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangePredefinedExpression#getBean <em>Bean</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Bean</em>' attribute.
* @see org.eclipse.osbp.xtext.datainterchange.PredefinedBeanEnum
* @see #getBean()
* @generated
*/
void setBean(PredefinedBeanEnum value);
/**
* Returns the value of the '<em><b>Bean Type</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.osbp.xtext.datainterchange.PredefinedBeanTypeEnum}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Bean 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>Bean Type</em>' attribute.
* @see org.eclipse.osbp.xtext.datainterchange.PredefinedBeanTypeEnum
* @see #setBeanType(PredefinedBeanTypeEnum)
* @see org.eclipse.osbp.xtext.datainterchange.DataDSLPackage#getDataInterchangePredefinedExpression_BeanType()
* @model unique="false"
* @generated
*/
PredefinedBeanTypeEnum getBeanType();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangePredefinedExpression#getBeanType <em>Bean Type</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Bean Type</em>' attribute.
* @see org.eclipse.osbp.xtext.datainterchange.PredefinedBeanTypeEnum
* @see #getBeanType()
* @generated
*/
void setBeanType(PredefinedBeanTypeEnum value);
} // DataInterchangePredefinedExpression