blob: ad8bff44308d989627d597915e233bce24618435 [file] [log] [blame]
/**
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Based on ideas from Xtext, Xtend, Xcore
*
* Contributors:
* Christophe Loetz (Loetz GmbH&Co.KG) - Initial implementation
*
*/
package org.eclipse.osbp.xtext.reportdsl;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Some Format</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.reportdsl.SomeFormat#getUi_pattern <em>Ui pattern</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.reportdsl.SomeFormat#getReport_pattern <em>Report pattern</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.reportdsl.SomeFormat#getTextalign <em>Textalign</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getSomeFormat()
* @model
* @generated
*/
public interface SomeFormat extends ReportBase {
/**
* Returns the value of the '<em><b>Ui pattern</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Ui pattern</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Ui pattern</em>' attribute.
* @see #setUi_pattern(String)
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getSomeFormat_Ui_pattern()
* @model unique="false"
* @generated
*/
String getUi_pattern();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.reportdsl.SomeFormat#getUi_pattern <em>Ui pattern</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Ui pattern</em>' attribute.
* @see #getUi_pattern()
* @generated
*/
void setUi_pattern(String value);
/**
* Returns the value of the '<em><b>Report pattern</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Report pattern</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Report pattern</em>' attribute.
* @see #setReport_pattern(String)
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getSomeFormat_Report_pattern()
* @model unique="false"
* @generated
*/
String getReport_pattern();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.reportdsl.SomeFormat#getReport_pattern <em>Report pattern</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Report pattern</em>' attribute.
* @see #getReport_pattern()
* @generated
*/
void setReport_pattern(String value);
/**
* Returns the value of the '<em><b>Textalign</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.osbp.xtext.reportdsl.TextAlignEnum}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Textalign</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Textalign</em>' attribute.
* @see org.eclipse.osbp.xtext.reportdsl.TextAlignEnum
* @see #setTextalign(TextAlignEnum)
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getSomeFormat_Textalign()
* @model unique="false"
* @generated
*/
TextAlignEnum getTextalign();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.reportdsl.SomeFormat#getTextalign <em>Textalign</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Textalign</em>' attribute.
* @see org.eclipse.osbp.xtext.reportdsl.TextAlignEnum
* @see #getTextalign()
* @generated
*/
void setTextalign(TextAlignEnum value);
} // SomeFormat