/** * Copyright 2012 Markus Scheidgen * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package de.hub.emffrag.model.emffrag; import org.eclipse.emf.ecore.EFactory; import org.eclipse.emf.ecore.EObject; /** * <!-- 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 de.hub.emffrag.model.emffrag.EmfFragPackage * @generated */ public interface EmfFragFactory extends EFactory { /** * The singleton instance of the factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ EmfFragFactory eINSTANCE = de.hub.emffrag.model.emffrag.impl.EmfFragFactoryImpl.init(); /** * Returns a new object of class '<em>Indexed Map</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Indexed Map</em>'. * @generated */ <K, V> IndexedMap<K, V> createIndexedMap(); /** * Returns a new object of class '<em>Indexed List</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Indexed List</em>'. * @generated */ <V extends EObject> IndexedList<V> createIndexedList(); /** * Returns a new object of class '<em>Containment Indexed Map</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Containment Indexed Map</em>'. * @generated */ <K, V> ContainmentIndexedMap<K, V> createContainmentIndexedMap(); /** * Returns a new object of class '<em>Root</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Root</em>'. * @generated */ Root createRoot(); /** * Returns a new object of class '<em>Statistics</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Statistics</em>'. * @generated */ Statistics createStatistics(); /** * Returns a new object of class '<em>Extension</em>'. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return a new object of class '<em>Extension</em>'. * @generated */ Extension createExtension(); /** * Returns the package supported by this factory. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @return the package supported by this factory. * @generated */ EmfFragPackage getEmfFragPackage(); } //EmfFragFactory