blob: c94f8c4a962b4828482c30f3c64aa9db1a753c14 [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;
import org.eclipse.osbp.dsl.semantic.entity.LEntity;
import org.eclipse.osbp.dsl.semantic.entity.LEntityAttribute;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Data Interchange Entity Expression</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeEntityExpression#getEntity <em>Entity</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeEntityExpression#getProperty <em>Property</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.datainterchange.DataDSLPackage#getDataInterchangeEntityExpression()
* @model
* @generated
*/
public interface DataInterchangeEntityExpression extends DataInterchangeExpression {
/**
* Returns the value of the '<em><b>Entity</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Entity</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Entity</em>' reference.
* @see #setEntity(LEntity)
* @see org.eclipse.osbp.xtext.datainterchange.DataDSLPackage#getDataInterchangeEntityExpression_Entity()
* @model
* @generated
*/
LEntity getEntity();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeEntityExpression#getEntity <em>Entity</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Entity</em>' reference.
* @see #getEntity()
* @generated
*/
void setEntity(LEntity value);
/**
* Returns the value of the '<em><b>Property</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Property</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Property</em>' reference.
* @see #setProperty(LEntityAttribute)
* @see org.eclipse.osbp.xtext.datainterchange.DataDSLPackage#getDataInterchangeEntityExpression_Property()
* @model
* @generated
*/
LEntityAttribute getProperty();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeEntityExpression#getProperty <em>Property</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Property</em>' reference.
* @see #getProperty()
* @generated
*/
void setProperty(LEntityAttribute value);
} // DataInterchangeEntityExpression