blob: 712e8d0910659f3d60e29cf411aaee1e9e22aa8a [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 XML</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeFileXML#getFileURL <em>File URL</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeFileXML#isByAttribute <em>By Attribute</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.datainterchange.DataDSLPackage#getDataInterchangeFileXML()
* @model
* @generated
*/
public interface DataInterchangeFileXML extends DataInterchangeFile {
/**
* Returns the value of the '<em><b>File URL</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>File URL</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>File URL</em>' attribute.
* @see #setFileURL(String)
* @see org.eclipse.osbp.xtext.datainterchange.DataDSLPackage#getDataInterchangeFileXML_FileURL()
* @model unique="false"
* @generated
*/
String getFileURL();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeFileXML#getFileURL <em>File URL</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>File URL</em>' attribute.
* @see #getFileURL()
* @generated
*/
void setFileURL(String value);
/**
* Returns the value of the '<em><b>By Attribute</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>By Attribute</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>By Attribute</em>' attribute.
* @see #setByAttribute(boolean)
* @see org.eclipse.osbp.xtext.datainterchange.DataDSLPackage#getDataInterchangeFileXML_ByAttribute()
* @model unique="false"
* @generated
*/
boolean isByAttribute();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.datainterchange.DataInterchangeFileXML#isByAttribute <em>By Attribute</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>By Attribute</em>' attribute.
* @see #isByAttribute()
* @generated
*/
void setByAttribute(boolean value);
} // DataInterchangeFileXML