blob: 4cf0049adc7243d72c6675c7a96bc2c68c4bc406 [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>Report Design Template</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.reportdsl.ReportDesignTemplate#getDescription <em>Description</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.reportdsl.ReportDesignTemplate#getHeader <em>Header</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.reportdsl.ReportDesignTemplate#getDetail <em>Detail</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.reportdsl.ReportDesignTemplate#getFooter <em>Footer</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getReportDesignTemplate()
* @model
* @generated
*/
public interface ReportDesignTemplate extends ReportDesign {
/**
* Returns the value of the '<em><b>Description</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Description</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Description</em>' attribute.
* @see #setDescription(String)
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getReportDesignTemplate_Description()
* @model unique="false"
* @generated
*/
String getDescription();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.reportdsl.ReportDesignTemplate#getDescription <em>Description</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Description</em>' attribute.
* @see #getDescription()
* @generated
*/
void setDescription(String value);
/**
* Returns the value of the '<em><b>Header</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Header</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Header</em>' containment reference.
* @see #setHeader(PageHeader)
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getReportDesignTemplate_Header()
* @model containment="true"
* @generated
*/
PageHeader getHeader();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.reportdsl.ReportDesignTemplate#getHeader <em>Header</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Header</em>' containment reference.
* @see #getHeader()
* @generated
*/
void setHeader(PageHeader value);
/**
* Returns the value of the '<em><b>Detail</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Detail</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Detail</em>' containment reference.
* @see #setDetail(PageDetail)
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getReportDesignTemplate_Detail()
* @model containment="true"
* @generated
*/
PageDetail getDetail();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.reportdsl.ReportDesignTemplate#getDetail <em>Detail</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Detail</em>' containment reference.
* @see #getDetail()
* @generated
*/
void setDetail(PageDetail value);
/**
* Returns the value of the '<em><b>Footer</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Footer</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Footer</em>' containment reference.
* @see #setFooter(PageFooter)
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getReportDesignTemplate_Footer()
* @model containment="true"
* @generated
*/
PageFooter getFooter();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.reportdsl.ReportDesignTemplate#getFooter <em>Footer</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Footer</em>' containment reference.
* @see #getFooter()
* @generated
*/
void setFooter(PageFooter value);
} // ReportDesignTemplate