blob: 6aac180362a9b4b8209d41ac903b20b0efced5ae [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 Number Interval</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.chart.ChartNumberInterval#getNumberIntervalValue <em>Number Interval Value</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.chart.ChartNumberInterval#getNumberRange <em>Number Range</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.chart.ChartDSLPackage#getChartNumberInterval()
* @model
* @generated
*/
public interface ChartNumberInterval extends ChartInterval {
/**
* Returns the value of the '<em><b>Number Interval Value</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Number Interval 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>Number Interval Value</em>' attribute.
* @see #setNumberIntervalValue(int)
* @see org.eclipse.osbp.xtext.chart.ChartDSLPackage#getChartNumberInterval_NumberIntervalValue()
* @model unique="false"
* @generated
*/
int getNumberIntervalValue();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.chart.ChartNumberInterval#getNumberIntervalValue <em>Number Interval Value</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Number Interval Value</em>' attribute.
* @see #getNumberIntervalValue()
* @generated
*/
void setNumberIntervalValue(int value);
/**
* Returns the value of the '<em><b>Number Range</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Number Range</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>Number Range</em>' containment reference.
* @see #setNumberRange(ChartRangeElement)
* @see org.eclipse.osbp.xtext.chart.ChartDSLPackage#getChartNumberInterval_NumberRange()
* @model containment="true"
* @generated
*/
ChartRangeElement getNumberRange();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.chart.ChartNumberInterval#getNumberRange <em>Number Range</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Number Range</em>' containment reference.
* @see #getNumberRange()
* @generated
*/
void setNumberRange(ChartRangeElement value);
} // ChartNumberInterval