blob: 0c0372653ebe31f4341b82beae81780cf1cca472 [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>Page Header</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.reportdsl.PageHeader#isShowOnFirst <em>Show On First</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.reportdsl.PageHeader#getHeightValue <em>Height Value</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getPageHeader()
* @model
* @generated
*/
public interface PageHeader extends Container {
/**
* Returns the value of the '<em><b>Show On First</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Show On First</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Show On First</em>' attribute.
* @see #setShowOnFirst(boolean)
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getPageHeader_ShowOnFirst()
* @model unique="false"
* @generated
*/
boolean isShowOnFirst();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.reportdsl.PageHeader#isShowOnFirst <em>Show On First</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Show On First</em>' attribute.
* @see #isShowOnFirst()
* @generated
*/
void setShowOnFirst(boolean value);
/**
* Returns the value of the '<em><b>Height Value</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Height Value</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Height Value</em>' attribute.
* @see #setHeightValue(double)
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getPageHeader_HeightValue()
* @model unique="false"
* @generated
*/
double getHeightValue();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.reportdsl.PageHeader#getHeightValue <em>Height Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Height Value</em>' attribute.
* @see #getHeightValue()
* @generated
*/
void setHeightValue(double value);
} // PageHeader