blob: 3c87d43a07c0140d36b014c3a9e0a459be8d4eaf [file] [log] [blame]
/**
* Copyright (c) 2012-2013 EclipseSource Muenchen GmbH and others.
*
* 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:
* Edgar Mueller - initial API and implementation
*/
package org.eclipse.emf.emfstore.test.model;
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.emf.emfstore.test.model.TestmodelPackage
* @generated
*/
public interface TestmodelFactory extends EFactory {
/**
* The singleton instance of the factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
TestmodelFactory eINSTANCE = org.eclipse.emf.emfstore.test.model.impl.TestmodelFactoryImpl.init();
/**
* Returns a new object of class '<em>Test Element</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @return a new object of class '<em>Test Element</em>'.
* @generated
*/
TestElement createTestElement();
/**
* Returns a new object of class '<em>Test Type</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @return a new object of class '<em>Test Type</em>'.
* @generated
*/
TestType createTestType();
/**
* Returns a new object of class '<em>Type With Feature Map Non Containment</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @return a new object of class '<em>Type With Feature Map Non Containment</em>'.
* @generated
*/
TypeWithFeatureMapNonContainment createTypeWithFeatureMapNonContainment();
/**
* Returns a new object of class '<em>Type With Feature Map Containment</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @return a new object of class '<em>Type With Feature Map Containment</em>'.
* @generated
*/
TypeWithFeatureMapContainment createTypeWithFeatureMapContainment();
/**
* Returns the package supported by this factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @return the package supported by this factory.
* @generated
*/
TestmodelPackage getTestmodelPackage();
} // TestmodelFactory