blob: 412ed28df6fb857b6c7db854a54912e9354093e2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2012 Formal Mind GmbH and University of Dusseldorf.
* 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:
* Michael Jastram - initial API and implementation
******************************************************************************/
package org.eclipse.rmf.reqif10.pror.configuration;
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.rmf.reqif10.pror.configuration.ConfigurationPackage
* @generated
*/
public interface ConfigurationFactory extends EFactory {
/**
* The singleton instance of the factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
ConfigurationFactory eINSTANCE = org.eclipse.rmf.reqif10.pror.configuration.impl.ConfigurationFactoryImpl.init();
/**
* Returns a new object of class '<em>Pror Tool Extension</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Pror Tool Extension</em>'.
* @generated
*/
ProrToolExtension createProrToolExtension();
/**
* Returns a new object of class '<em>Pror Spec View Configuration</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Pror Spec View Configuration</em>'.
* @generated
*/
ProrSpecViewConfiguration createProrSpecViewConfiguration();
/**
* Returns a new object of class '<em>Column</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Column</em>'.
* @generated
*/
Column createColumn();
/**
* Returns a new object of class '<em>Pror Presentation Configurations</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Pror Presentation Configurations</em>'.
* @generated
*/
ProrPresentationConfigurations createProrPresentationConfigurations();
/**
* Returns a new object of class '<em>Pror General Configuration</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Pror General Configuration</em>'.
* @generated
*/
ProrGeneralConfiguration createProrGeneralConfiguration();
/**
* Returns a new object of class '<em>Label Configuration</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Label Configuration</em>'.
* @generated
*/
LabelConfiguration createLabelConfiguration();
/**
* Returns the package supported by this factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the package supported by this factory.
* @generated
*/
ConfigurationPackage getConfigurationPackage();
} //ConfigFactory