blob: 82728870edf24bc04e8f61841b50e3fa26bbd31f [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 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.chart;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Chart Bar</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.chart.ChartBar#isShadow <em>Shadow</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.chart.ChartBar#isAnimated <em>Animated</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.chart.ChartBar#isSwapped <em>Swapped</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.chart.ChartBar#isStacked <em>Stacked</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.chart.ChartDSLPackage#getChartBar()
* @model
* @generated
*/
public interface ChartBar extends ChartOption {
/**
* Returns the value of the '<em><b>Shadow</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Shadow</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Shadow</em>' attribute.
* @see #setShadow(boolean)
* @see org.eclipse.osbp.xtext.chart.ChartDSLPackage#getChartBar_Shadow()
* @model unique="false"
* @generated
*/
boolean isShadow();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.chart.ChartBar#isShadow <em>Shadow</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Shadow</em>' attribute.
* @see #isShadow()
* @generated
*/
void setShadow(boolean value);
/**
* Returns the value of the '<em><b>Animated</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Animated</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Animated</em>' attribute.
* @see #setAnimated(boolean)
* @see org.eclipse.osbp.xtext.chart.ChartDSLPackage#getChartBar_Animated()
* @model unique="false"
* @generated
*/
boolean isAnimated();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.chart.ChartBar#isAnimated <em>Animated</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Animated</em>' attribute.
* @see #isAnimated()
* @generated
*/
void setAnimated(boolean value);
/**
* Returns the value of the '<em><b>Swapped</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Swapped</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Swapped</em>' attribute.
* @see #setSwapped(boolean)
* @see org.eclipse.osbp.xtext.chart.ChartDSLPackage#getChartBar_Swapped()
* @model unique="false"
* @generated
*/
boolean isSwapped();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.chart.ChartBar#isSwapped <em>Swapped</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Swapped</em>' attribute.
* @see #isSwapped()
* @generated
*/
void setSwapped(boolean value);
/**
* Returns the value of the '<em><b>Stacked</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Stacked</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Stacked</em>' attribute.
* @see #setStacked(boolean)
* @see org.eclipse.osbp.xtext.chart.ChartDSLPackage#getChartBar_Stacked()
* @model unique="false"
* @generated
*/
boolean isStacked();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.chart.ChartBar#isStacked <em>Stacked</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Stacked</em>' attribute.
* @see #isStacked()
* @generated
*/
void setStacked(boolean value);
} // ChartBar