blob: a069bebaebc9bd4633476994cc5a27e92aff966d [file] [log] [blame]
/**
* *******************************************************************************
* Copyright (c) 2008 The University of York.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Louis Rose - initial API and implementation
* ******************************************************************************
*
* $Id: HutnConfigFactory.java,v 1.2 2008/07/30 11:13:12 dkolovos Exp $
*/
package org.eclipse.epsilon.hutn.model.config.hutnConfig;
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.epsilon.hutn.model.config.hutnConfig.HutnConfigPackage
* @generated
*/
public interface HutnConfigFactory extends EFactory {
/**
* The singleton instance of the factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
HutnConfigFactory eINSTANCE = org.eclipse.epsilon.hutn.model.config.hutnConfig.impl.HutnConfigFactoryImpl.init();
/**
* Returns a new object of class '<em>Configuration</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Configuration</em>'.
* @generated
*/
Configuration createConfiguration();
/**
* Returns a new object of class '<em>Identifier Rule</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Identifier Rule</em>'.
* @generated
*/
IdentifierRule createIdentifierRule();
/**
* Returns a new object of class '<em>Default Value Rule</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Default Value Rule</em>'.
* @generated
*/
DefaultValueRule createDefaultValueRule();
/**
* Returns the package supported by this factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the package supported by this factory.
* @generated
*/
HutnConfigPackage getHutnConfigPackage();
} //HutnConfigFactory