blob: 4703b4ec8e2a695591ca2e8a96fbe044b98874b4 [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>Grid Cell</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.reportdsl.GridCell#getColumnspan <em>Columnspan</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.reportdsl.GridCell#getWidthValue <em>Width Value</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.reportdsl.GridCell#getVisibilityItem <em>Visibility Item</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getGridCell()
* @model
* @generated
*/
public interface GridCell extends ReportBase, Container, WithStyle {
/**
* Returns the value of the '<em><b>Columnspan</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Columnspan</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Columnspan</em>' attribute.
* @see #setColumnspan(int)
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getGridCell_Columnspan()
* @model unique="false"
* @generated
*/
int getColumnspan();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.reportdsl.GridCell#getColumnspan <em>Columnspan</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Columnspan</em>' attribute.
* @see #getColumnspan()
* @generated
*/
void setColumnspan(int value);
/**
* Returns the value of the '<em><b>Width Value</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Width 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>Width Value</em>' attribute.
* @see #setWidthValue(double)
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getGridCell_WidthValue()
* @model unique="false"
* @generated
*/
double getWidthValue();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.reportdsl.GridCell#getWidthValue <em>Width Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Width Value</em>' attribute.
* @see #getWidthValue()
* @generated
*/
void setWidthValue(double value);
/**
* Returns the value of the '<em><b>Visibility Item</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Visibility Item</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>Visibility Item</em>' containment reference.
* @see #setVisibilityItem(Visibility)
* @see org.eclipse.osbp.xtext.reportdsl.ReportDSLPackage#getGridCell_VisibilityItem()
* @model containment="true"
* @generated
*/
Visibility getVisibilityItem();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.reportdsl.GridCell#getVisibilityItem <em>Visibility Item</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Visibility Item</em>' containment reference.
* @see #getVisibilityItem()
* @generated
*/
void setVisibilityItem(Visibility value);
} // GridCell