blob: 8ae682b5ce1b04d5572c42d992229db1e06a841e [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 File</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeFile#getEncoding <em>Encoding</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeFile#getLocale <em>Locale</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.datainterchange.DataDSLPackage#getDataInterchangeFile()
* @model interface="true" abstract="true"
* @generated
*/
public interface DataInterchangeFile extends DataInterchangeLazyResolver {
/**
* Returns the value of the '<em><b>Encoding</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Encoding</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Encoding</em>' attribute.
* @see #setEncoding(String)
* @see org.eclipse.osbp.xtext.datainterchange.DataDSLPackage#getDataInterchangeFile_Encoding()
* @model unique="false"
* @generated
*/
String getEncoding();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeFile#getEncoding <em>Encoding</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Encoding</em>' attribute.
* @see #getEncoding()
* @generated
*/
void setEncoding(String value);
/**
* Returns the value of the '<em><b>Locale</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Locale</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Locale</em>' attribute.
* @see #setLocale(String)
* @see org.eclipse.osbp.xtext.datainterchange.DataDSLPackage#getDataInterchangeFile_Locale()
* @model unique="false"
* @generated
*/
String getLocale();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeFile#getLocale <em>Locale</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Locale</em>' attribute.
* @see #getLocale()
* @generated
*/
void setLocale(String value);
} // DataInterchangeFile