blob: b29404a0e1db5dda1f1b4d485fbebab24b2dcc17 [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.LEntityAttribute;
import org.eclipse.osbp.dsl.semantic.entity.LEntityReference;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Data Interchange Expose</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeExpose#getRefEntity <em>Ref Entity</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeExpose#getRefProperty <em>Ref Property</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeExpose#getSubExpose <em>Sub Expose</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.datainterchange.DataDSLPackage#getDataInterchangeExpose()
* @model
* @generated
*/
public interface DataInterchangeExpose extends DataInterchangeLazyResolver {
/**
* Returns the value of the '<em><b>Ref Entity</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Ref 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>Ref Entity</em>' reference.
* @see #setRefEntity(LEntityReference)
* @see org.eclipse.osbp.xtext.datainterchange.DataDSLPackage#getDataInterchangeExpose_RefEntity()
* @model
* @generated
*/
LEntityReference getRefEntity();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeExpose#getRefEntity <em>Ref Entity</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Ref Entity</em>' reference.
* @see #getRefEntity()
* @generated
*/
void setRefEntity(LEntityReference value);
/**
* Returns the value of the '<em><b>Ref Property</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Ref 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>Ref Property</em>' reference.
* @see #setRefProperty(LEntityAttribute)
* @see org.eclipse.osbp.xtext.datainterchange.DataDSLPackage#getDataInterchangeExpose_RefProperty()
* @model
* @generated
*/
LEntityAttribute getRefProperty();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeExpose#getRefProperty <em>Ref Property</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Ref Property</em>' reference.
* @see #getRefProperty()
* @generated
*/
void setRefProperty(LEntityAttribute value);
/**
* Returns the value of the '<em><b>Sub Expose</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Sub Expose</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>Sub Expose</em>' containment reference.
* @see #setSubExpose(DataInterchangeExpose)
* @see org.eclipse.osbp.xtext.datainterchange.DataDSLPackage#getDataInterchangeExpose_SubExpose()
* @model containment="true"
* @generated
*/
DataInterchangeExpose getSubExpose();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeExpose#getSubExpose <em>Sub Expose</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Sub Expose</em>' containment reference.
* @see #getSubExpose()
* @generated
*/
void setSubExpose(DataInterchangeExpose value);
} // DataInterchangeExpose