blob: 33f8809f08dd9fcf95618adfeac12f8fc2584367 [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 Legend</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.osbp.xtext.chart.ChartLegend#getPlacement <em>Placement</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.chart.ChartLegend#isToggle <em>Toggle</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.chart.ChartLegend#isReplot <em>Replot</em>}</li>
* <li>{@link org.eclipse.osbp.xtext.chart.ChartLegend#getToggleType <em>Toggle Type</em>}</li>
* </ul>
*
* @see org.eclipse.osbp.xtext.chart.ChartDSLPackage#getChartLegend()
* @model
* @generated
*/
public interface ChartLegend extends ChartElement {
/**
* Returns the value of the '<em><b>Placement</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.osbp.xtext.chart.LegendPlacementEnum}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Placement</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Placement</em>' attribute.
* @see org.eclipse.osbp.xtext.chart.LegendPlacementEnum
* @see #setPlacement(LegendPlacementEnum)
* @see org.eclipse.osbp.xtext.chart.ChartDSLPackage#getChartLegend_Placement()
* @model unique="false"
* @generated
*/
LegendPlacementEnum getPlacement();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.chart.ChartLegend#getPlacement <em>Placement</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Placement</em>' attribute.
* @see org.eclipse.osbp.xtext.chart.LegendPlacementEnum
* @see #getPlacement()
* @generated
*/
void setPlacement(LegendPlacementEnum value);
/**
* Returns the value of the '<em><b>Toggle</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Toggle</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Toggle</em>' attribute.
* @see #setToggle(boolean)
* @see org.eclipse.osbp.xtext.chart.ChartDSLPackage#getChartLegend_Toggle()
* @model unique="false"
* @generated
*/
boolean isToggle();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.chart.ChartLegend#isToggle <em>Toggle</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Toggle</em>' attribute.
* @see #isToggle()
* @generated
*/
void setToggle(boolean value);
/**
* Returns the value of the '<em><b>Replot</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Replot</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Replot</em>' attribute.
* @see #setReplot(boolean)
* @see org.eclipse.osbp.xtext.chart.ChartDSLPackage#getChartLegend_Replot()
* @model unique="false"
* @generated
*/
boolean isReplot();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.chart.ChartLegend#isReplot <em>Replot</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Replot</em>' attribute.
* @see #isReplot()
* @generated
*/
void setReplot(boolean value);
/**
* Returns the value of the '<em><b>Toggle Type</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.osbp.xtext.chart.ToggleTypeEnum}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Toggle 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>Toggle Type</em>' attribute.
* @see org.eclipse.osbp.xtext.chart.ToggleTypeEnum
* @see #setToggleType(ToggleTypeEnum)
* @see org.eclipse.osbp.xtext.chart.ChartDSLPackage#getChartLegend_ToggleType()
* @model unique="false"
* @generated
*/
ToggleTypeEnum getToggleType();
/**
* Sets the value of the '{@link org.eclipse.osbp.xtext.chart.ChartLegend#getToggleType <em>Toggle Type</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Toggle Type</em>' attribute.
* @see org.eclipse.osbp.xtext.chart.ToggleTypeEnum
* @see #getToggleType()
* @generated
*/
void setToggleType(ToggleTypeEnum value);
} // ChartLegend