blob: 0f2d25c2889a33ffcc0d21f5b977134a0d72f5a9 [file] [log] [blame]
/*
* Copyright (c) 2013, 2015 Eike Stepper (Berlin, Germany) 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:
* Eike Stepper - initial API and implementation
*/
package org.eclipse.emf.cdo.tests.model5.legacy;
import org.eclipse.emf.cdo.tests.model5.Child;
import org.eclipse.emf.cdo.tests.model5.Doctor;
import org.eclipse.emf.cdo.tests.model5.GenListOfBoolean;
import org.eclipse.emf.cdo.tests.model5.GenListOfChar;
import org.eclipse.emf.cdo.tests.model5.GenListOfDate;
import org.eclipse.emf.cdo.tests.model5.GenListOfDouble;
import org.eclipse.emf.cdo.tests.model5.GenListOfFloat;
import org.eclipse.emf.cdo.tests.model5.GenListOfInt;
import org.eclipse.emf.cdo.tests.model5.GenListOfIntArray;
import org.eclipse.emf.cdo.tests.model5.GenListOfInteger;
import org.eclipse.emf.cdo.tests.model5.GenListOfLong;
import org.eclipse.emf.cdo.tests.model5.GenListOfShort;
import org.eclipse.emf.cdo.tests.model5.GenListOfString;
import org.eclipse.emf.cdo.tests.model5.Manager;
import org.eclipse.emf.cdo.tests.model5.Parent;
import org.eclipse.emf.cdo.tests.model5.TestFeatureMap;
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.
* @extends org.eclipse.emf.cdo.tests.model5.Model5Factory
* <!-- end-user-doc -->
* @see org.eclipse.emf.cdo.tests.model5.legacy.Model5Package
* @generated
*/
public interface Model5Factory extends EFactory, org.eclipse.emf.cdo.tests.model5.Model5Factory
{
/**
* The singleton instance of the factory.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @generated
*/
Model5Factory eINSTANCE = org.eclipse.emf.cdo.tests.model5.legacy.impl.Model5FactoryImpl.init();
/**
* Returns a new object of class '<em>Test Feature Map</em>'.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @return a new object of class '<em>Test Feature Map</em>'.
* @generated
*/
TestFeatureMap createTestFeatureMap();
/**
* Returns a new object of class '<em>Manager</em>'.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @return a new object of class '<em>Manager</em>'.
* @generated
*/
Manager createManager();
/**
* Returns a new object of class '<em>Doctor</em>'.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @return a new object of class '<em>Doctor</em>'.
* @generated
*/
Doctor createDoctor();
/**
* Returns a new object of class '<em>Gen List Of String</em>'.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @return a new object of class '<em>Gen List Of String</em>'.
* @generated
*/
GenListOfString createGenListOfString();
/**
* Returns a new object of class '<em>Gen List Of Int</em>'.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @return a new object of class '<em>Gen List Of Int</em>'.
* @generated
*/
GenListOfInt createGenListOfInt();
/**
* Returns a new object of class '<em>Gen List Of Integer</em>'.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @return a new object of class '<em>Gen List Of Integer</em>'.
* @generated
*/
GenListOfInteger createGenListOfInteger();
/**
* Returns a new object of class '<em>Gen List Of Long</em>'.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @return a new object of class '<em>Gen List Of Long</em>'.
* @generated
*/
GenListOfLong createGenListOfLong();
/**
* Returns a new object of class '<em>Gen List Of Boolean</em>'.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @return a new object of class '<em>Gen List Of Boolean</em>'.
* @generated
*/
GenListOfBoolean createGenListOfBoolean();
/**
* Returns a new object of class '<em>Gen List Of Short</em>'.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @return a new object of class '<em>Gen List Of Short</em>'.
* @generated
*/
GenListOfShort createGenListOfShort();
/**
* Returns a new object of class '<em>Gen List Of Float</em>'.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @return a new object of class '<em>Gen List Of Float</em>'.
* @generated
*/
GenListOfFloat createGenListOfFloat();
/**
* Returns a new object of class '<em>Gen List Of Double</em>'.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @return a new object of class '<em>Gen List Of Double</em>'.
* @generated
*/
GenListOfDouble createGenListOfDouble();
/**
* Returns a new object of class '<em>Gen List Of Date</em>'.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @return a new object of class '<em>Gen List Of Date</em>'.
* @generated
*/
GenListOfDate createGenListOfDate();
/**
* Returns a new object of class '<em>Gen List Of Char</em>'.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @return a new object of class '<em>Gen List Of Char</em>'.
* @generated
*/
GenListOfChar createGenListOfChar();
/**
* Returns a new object of class '<em>Gen List Of Int Array</em>'.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @return a new object of class '<em>Gen List Of Int Array</em>'.
* @generated
*/
GenListOfIntArray createGenListOfIntArray();
/**
* Returns a new object of class '<em>Parent</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Parent</em>'.
* @generated
*/
Parent createParent();
/**
* Returns a new object of class '<em>Child</em>'.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return a new object of class '<em>Child</em>'.
* @generated
*/
Child createChild();
/**
* Returns the package supported by this factory.
* <!-- begin-user-doc --> <!-- end-user-doc -->
* @return the package supported by this factory.
* @generated
*/
Model5Package getModel5Package();
} // Model5Factory