blob: ef8ac6a20a1b92858d523c5514a969e6e7591dd3 [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>Serie</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.modisco.utils.chart.metamodel.internal.chart.Serie#getName <em>Name</em>}</li>
* <li>{@link org.eclipse.modisco.utils.chart.metamodel.internal.chart.Serie#getPoints <em>Points</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.modisco.utils.chart.metamodel.internal.chart.ChartPackage#getSerie()
* @model
* @generated
*/
public interface Serie 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>Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Name</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Name</em>' attribute.
* @see #setName(String)
* @see org.eclipse.modisco.utils.chart.metamodel.internal.chart.ChartPackage#getSerie_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.modisco.utils.chart.metamodel.internal.chart.Serie#getName <em>Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the '<em><b>Points</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.modisco.utils.chart.metamodel.internal.chart.Point}.
* It is bidirectional and its opposite is '{@link org.eclipse.modisco.utils.chart.metamodel.internal.chart.Point#getSerie <em>Serie</em>}'.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Points</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>Points</em>' containment reference list.
* @see org.eclipse.modisco.utils.chart.metamodel.internal.chart.ChartPackage#getSerie_Points()
* @see org.eclipse.modisco.utils.chart.metamodel.internal.chart.Point#getSerie
* @model opposite="serie" containment="true"
* @generated
*/
EList<Point> getPoints();
} // Serie