blob: 3271bf75aa9fd93dd7cfaffd5240e6f63468423e [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:
* Joerg Riegel - Initial implementation
*
*/
package org.eclipse.osbp.xtext.chart;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Chart Highlighter</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.chart.ChartHighlighter#getLocation <em>Location</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.chart.ChartHighlighter#isTooltipAlways <em>Tooltip Always</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.chart.ChartHighlighter#isInsideChart <em>Inside Chart</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.chart.ChartDSLPackage#getChartHighlighter()
* @model
* @generated
*/
public interface ChartHighlighter extends ChartElement {
/**
* Returns the value of the '<em><b>Location</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.osbp.xtext.chart.TooltipLocationEnum}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Location</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Location</em>' attribute.
* @see org.eclipse.osbp.xtext.chart.TooltipLocationEnum
* @see #setLocation(TooltipLocationEnum)
* @see org.eclipse.osbp.xtext.chart.ChartDSLPackage#getChartHighlighter_Location()
* @model unique="false"
* @generated
*/
TooltipLocationEnum getLocation();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.chart.ChartHighlighter#getLocation <em>Location</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Location</em>' attribute.
* @see org.eclipse.osbp.xtext.chart.TooltipLocationEnum
* @see #getLocation()
* @generated
*/
void setLocation(TooltipLocationEnum value);
/**
* Returns the value of the '<em><b>Tooltip Always</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Tooltip Always</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Tooltip Always</em>' attribute.
* @see #setTooltipAlways(boolean)
* @see org.eclipse.osbp.xtext.chart.ChartDSLPackage#getChartHighlighter_TooltipAlways()
* @model unique="false"
* @generated
*/
boolean isTooltipAlways();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.chart.ChartHighlighter#isTooltipAlways <em>Tooltip Always</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Tooltip Always</em>' attribute.
* @see #isTooltipAlways()
* @generated
*/
void setTooltipAlways(boolean value);
/**
* Returns the value of the '<em><b>Inside Chart</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Inside Chart</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Inside Chart</em>' attribute.
* @see #setInsideChart(boolean)
* @see org.eclipse.osbp.xtext.chart.ChartDSLPackage#getChartHighlighter_InsideChart()
* @model unique="false"
* @generated
*/
boolean isInsideChart();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.chart.ChartHighlighter#isInsideChart <em>Inside Chart</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Inside Chart</em>' attribute.
* @see #isInsideChart()
* @generated
*/
void setInsideChart(boolean value);
} // ChartHighlighter