blob: 739589c2486e6467906a531bf405b0dfc2985503 [file] [log] [blame]
/**
*/
package 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 configuration.ConfigurationPackage
* @generated
* @author Stefan Schulz
*
*/
public interface ConfigurationFactory extends EFactory {
/**
* The singleton instance of the factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
ConfigurationFactory eINSTANCE = configuration.impl.ConfigurationFactoryImpl.init();
/**
* Returns a new object of class '<em>Feature</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Feature</em>'.
* @generated
*/
Feature createFeature();
/**
* 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();
/**
* @generated NOT
*/
Configuration createConfiguration(Configuration configuration);
/**
* Returns a new object of class '<em>Favorite</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Favorite</em>'.
* @generated
*/
Favorite createFavorite();
/**
* @generated NOT
*/
Favorite createFavorite(Configuration configuration);
/**
* Returns the package supported by this factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return the package supported by this factory.
* @generated
*/
ConfigurationPackage getConfigurationPackage();
} //ConfigurationFactory