blob: 39024d80e4cd9b2865b2e7b59d452c1e8d7fe6d9 [file] [log] [blame]
/**
* *******************************************************************************
* * Copyright (c) 2012, 2019 INRIA. 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-v20.html
* *
* * Contributors: Guillaume Doux - INRIA - Initial API and implementation
* *
* ******************************************************************************
*
*/
package org.eclipse.modisco.utils.chart.metamodel.internal.chart;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Chart</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.modisco.utils.chart.metamodel.internal.chart.Chart#getAxes <em>Axes</em>}</li>
* <li>{@link org.eclipse.modisco.utils.chart.metamodel.internal.chart.Chart#getSeries <em>Series</em>}</li>
* <li>{@link org.eclipse.modisco.utils.chart.metamodel.internal.chart.Chart#getTitle <em>Title</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.modisco.utils.chart.metamodel.internal.chart.ChartPackage#getChart()
* @model
* @generated
*/
public interface Chart extends EObject {
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
String copyright = "*******************************************************************************\r\n * Copyright (c) 2012 INRIA. All rights reserved. This program and the\r\n * accompanying materials are made available under the terms of the Eclipse\r\n * Public License v1.0 which accompanies this distribution, and is available at\r\n * http://www.eclipse.org/legal/epl-v20.html\r\n * \r\n * Contributors: Guillaume Doux - INRIA - Initial API and implementation\r\n * \r\n ******************************************************************************\r\n";
/**
* Returns the value of the '<em><b>Axes</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.modisco.utils.chart.metamodel.internal.chart.Axe}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Axes</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Axes</em>' containment reference list.
* @see org.eclipse.modisco.utils.chart.metamodel.internal.chart.ChartPackage#getChart_Axes()
* @model containment="true"
* @generated
*/
EList<Axe> getAxes();
/**
* Returns the value of the '<em><b>Series</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.modisco.utils.chart.metamodel.internal.chart.Serie}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Series</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Series</em>' containment reference list.
* @see org.eclipse.modisco.utils.chart.metamodel.internal.chart.ChartPackage#getChart_Series()
* @model containment="true"
* @generated
*/
EList<Serie> getSeries();
/**
* Returns the value of the '<em><b>Title</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Title</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Title</em>' attribute.
* @see #setTitle(String)
* @see org.eclipse.modisco.utils.chart.metamodel.internal.chart.ChartPackage#getChart_Title()
* @model
* @generated
*/
String getTitle();
/**
* Sets the value of the '{@link org.eclipse.modisco.utils.chart.metamodel.internal.chart.Chart#getTitle <em>Title</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Title</em>' attribute.
* @see #getTitle()
* @generated
*/
void setTitle(String value);
} // Chart