blob: cedbdd53f7d8fe83440dd0701d46c5e0bd0cb7c2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 TU Wien.
* 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
*
* Contributors:
* Alexander Bergmayr (TU Wien) - initial API and implementation
*
* Initially developed in the context of ARTIST EU project www.artist-project.eu
*******************************************************************************/
/**
*/
package org.eclipse.upr.platform.trace;
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.upr.platform.trace.TracePackage
* @generated
*/
public interface TraceFactory extends EFactory {
/**
* The singleton instance of the factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
TraceFactory eINSTANCE = org.eclipse.upr.platform.trace.impl.TraceFactoryImpl.init();
/**
* Returns a new object of class '<em>Trace</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Trace</em>'.
* @generated
*/
Trace createTrace();
/**
* Returns a new object of class '<em>Link</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Link</em>'.
* @generated
*/
TraceLink createTraceLink();
/**
* Returns the package supported by this factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the package supported by this factory.
* @generated
*/
TracePackage getTracePackage();
} //TraceFactory