blob: c6bbbaa5bd0a0edaf0376c60a021f0001ecb32a3 [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.ecore.EFactory;
/**
* <!-- begin-user-doc -->
* The <b>Factory</b> for the model.
* It provides a create method for each non-abstract class of the model.
* <!-- end-user-doc -->
* @see org.eclipse.modisco.utils.chart.metamodel.internal.chart.ChartPackage
* @generated
*/
public interface ChartFactory extends EFactory {
/**
* <!-- 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";
/**
* The singleton instance of the factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
ChartFactory eINSTANCE = org.eclipse.modisco.utils.chart.metamodel.internal.chart.impl.ChartFactoryImpl.init();
/**
* Returns a new object of class '<em>Chart</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Chart</em>'.
* @generated
*/
Chart createChart();
/**
* Returns a new object of class '<em>Axe</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Axe</em>'.
* @generated
*/
Axe createAxe();
/**
* Returns a new object of class '<em>Serie</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Serie</em>'.
* @generated
*/
Serie createSerie();
/**
* Returns a new object of class '<em>Point</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Point</em>'.
* @generated
*/
Point createPoint();
/**
* Returns a new object of class '<em>Coordinate</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Coordinate</em>'.
* @generated
*/
Coordinate createCoordinate();
/**
* Returns the package supported by this factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the package supported by this factory.
* @generated
*/
ChartPackage getChartPackage();
} //ChartFactory