blob: f0e8d9885d0b2165c2432024e3988291f0333812 [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 Pie</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.chart.ChartPie#isEmpty <em>Empty</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.chart.ChartDSLPackage#getChartPie()
* @model
* @generated
*/
public interface ChartPie extends ChartOption {
/**
* Returns the value of the '<em><b>Empty</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Empty</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Empty</em>' attribute.
* @see #setEmpty(boolean)
* @see org.eclipse.osbp.xtext.chart.ChartDSLPackage#getChartPie_Empty()
* @model unique="false"
* @generated
*/
boolean isEmpty();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.chart.ChartPie#isEmpty <em>Empty</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Empty</em>' attribute.
* @see #isEmpty()
* @generated
*/
void setEmpty(boolean value);
} // ChartPie