blob: 25b261604cc2f4f521e4a401aed647fad6af371e [file] [log] [blame]
/**
* Copyright (c) 2010 Mia-Software.
* 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:
* Nicolas Payneau (Mia-Software) - initial API and implementation
*/
package org.eclipse.modisco.smm.quality;
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.smm.quality.SmmqualityPackage
* @generated
*/
public interface SmmqualityFactory extends EFactory {
/**
* The singleton instance of the factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
SmmqualityFactory eINSTANCE = org.eclipse.modisco.smm.quality.impl.SmmqualityFactoryImpl.init();
/**
* Returns a new object of class '<em>Quality Scope</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Quality Scope</em>'.
* @generated
*/
QualityScope createQualityScope();
/**
* Returns a new object of class '<em>Measurand</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Measurand</em>'.
* @generated
*/
Measurand createMeasurand();
/**
* Returns the package supported by this factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the package supported by this factory.
* @generated
*/
SmmqualityPackage getSmmqualityPackage();
} //SmmqualityFactory