blob: 4a32854b062208b5342da354ce59e25079c9f84d [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;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Data Interchange Format</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeFormat#getTargetProperty <em>Target Property</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeFormat#getFormat <em>Format</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.datainterchange.DataDSLPackage#getDataInterchangeFormat()
* @model
* @generated
*/
public interface DataInterchangeFormat extends DataInterchangeLazyResolver {
/**
* Returns the value of the '<em><b>Target Property</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Target 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>Target Property</em>' reference.
* @see #setTargetProperty(LEntityAttribute)
* @see org.eclipse.osbp.xtext.datainterchange.DataDSLPackage#getDataInterchangeFormat_TargetProperty()
* @model
* @generated
*/
LEntityAttribute getTargetProperty();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeFormat#getTargetProperty <em>Target Property</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Target Property</em>' reference.
* @see #getTargetProperty()
* @generated
*/
void setTargetProperty(LEntityAttribute value);
/**
* Returns the value of the '<em><b>Format</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Format</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Format</em>' attribute.
* @see #setFormat(String)
* @see org.eclipse.osbp.xtext.datainterchange.DataDSLPackage#getDataInterchangeFormat_Format()
* @model unique="false"
* @generated
*/
String getFormat();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeFormat#getFormat <em>Format</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Format</em>' attribute.
* @see #getFormat()
* @generated
*/
void setFormat(String value);
} // DataInterchangeFormat