blob: c0edce04e696213ef3ba35148b57aa1f96393f7e [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 Marker Entity</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeMarkerEntity#isMarkLatest <em>Mark Latest</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeMarkerEntity#getMarkerEntity <em>Marker Entity</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeMarkerEntity#getMarkerProperty <em>Marker Property</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.datainterchange.DataDSLPackage#getDataInterchangeMarkerEntity()
* @model
* @generated
*/
public interface DataInterchangeMarkerEntity extends DataInterchangeLazyResolver {
/**
* Returns the value of the '<em><b>Mark Latest</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Mark Latest</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Mark Latest</em>' attribute.
* @see #setMarkLatest(boolean)
* @see org.eclipse.osbp.xtext.datainterchange.DataDSLPackage#getDataInterchangeMarkerEntity_MarkLatest()
* @model unique="false"
* @generated
*/
boolean isMarkLatest();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeMarkerEntity#isMarkLatest <em>Mark Latest</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Mark Latest</em>' attribute.
* @see #isMarkLatest()
* @generated
*/
void setMarkLatest(boolean value);
/**
* Returns the value of the '<em><b>Marker Entity</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Marker 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>Marker Entity</em>' reference.
* @see #setMarkerEntity(LEntity)
* @see org.eclipse.osbp.xtext.datainterchange.DataDSLPackage#getDataInterchangeMarkerEntity_MarkerEntity()
* @model
* @generated
*/
LEntity getMarkerEntity();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeMarkerEntity#getMarkerEntity <em>Marker Entity</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Marker Entity</em>' reference.
* @see #getMarkerEntity()
* @generated
*/
void setMarkerEntity(LEntity value);
/**
* Returns the value of the '<em><b>Marker Property</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Marker 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>Marker Property</em>' reference.
* @see #setMarkerProperty(LEntityAttribute)
* @see org.eclipse.osbp.xtext.datainterchange.DataDSLPackage#getDataInterchangeMarkerEntity_MarkerProperty()
* @model
* @generated
*/
LEntityAttribute getMarkerProperty();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeMarkerEntity#getMarkerProperty <em>Marker Property</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Marker Property</em>' reference.
* @see #getMarkerProperty()
* @generated
*/
void setMarkerProperty(LEntityAttribute value);
} // DataInterchangeMarkerEntity