blob: ec7a0a238ca7c7b9cdedd6e326698a70284bd440 [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.chart;
import org.eclipse.osbp.xtext.datamartdsl.DatamartAxis;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Chart Axis</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.osbp.xtext.chart.ChartAxis#getAxis <em>Axis</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.chart.ChartAxis#getRenderType <em>Render Type</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.chart.ChartAxis#isShortLabel <em>Short Label</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.chart.ChartAxis#getAngle <em>Angle</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.osbp.xtext.chart.ChartDSLPackage#getChartAxis()
* @model
* @generated
*/
public interface ChartAxis extends ChartElement {
/**
* Returns the value of the '<em><b>Axis</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Axis</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Axis</em>' reference.
* @see #setAxis(DatamartAxis)
* @see org.eclipse.osbp.xtext.chart.ChartDSLPackage#getChartAxis_Axis()
* @model
* @generated
*/
DatamartAxis getAxis();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.chart.ChartAxis#getAxis <em>Axis</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Axis</em>' reference.
* @see #getAxis()
* @generated
*/
void setAxis(DatamartAxis value);
/**
* Returns the value of the '<em><b>Render Type</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.osbp.xtext.chart.RenderTypeEnum}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Render Type</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Render Type</em>' attribute.
* @see org.eclipse.osbp.xtext.chart.RenderTypeEnum
* @see #setRenderType(RenderTypeEnum)
* @see org.eclipse.osbp.xtext.chart.ChartDSLPackage#getChartAxis_RenderType()
* @model unique="false"
* @generated
*/
RenderTypeEnum getRenderType();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.chart.ChartAxis#getRenderType <em>Render Type</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Render Type</em>' attribute.
* @see org.eclipse.osbp.xtext.chart.RenderTypeEnum
* @see #getRenderType()
* @generated
*/
void setRenderType(RenderTypeEnum value);
/**
* Returns the value of the '<em><b>Short Label</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Short Label</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Short Label</em>' attribute.
* @see #setShortLabel(boolean)
* @see org.eclipse.osbp.xtext.chart.ChartDSLPackage#getChartAxis_ShortLabel()
* @model unique="false"
* @generated
*/
boolean isShortLabel();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.chart.ChartAxis#isShortLabel <em>Short Label</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Short Label</em>' attribute.
* @see #isShortLabel()
* @generated
*/
void setShortLabel(boolean value);
/**
* Returns the value of the '<em><b>Angle</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Angle</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Angle</em>' attribute.
* @see #setAngle(int)
* @see org.eclipse.osbp.xtext.chart.ChartDSLPackage#getChartAxis_Angle()
* @model unique="false"
* @generated
*/
int getAngle();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.chart.ChartAxis#getAngle <em>Angle</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Angle</em>' attribute.
* @see #getAngle()
* @generated
*/
void setAngle(int value);
} // ChartAxis