KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > emf > mapping > ecore2ecore > Ecore2EcoreFactory


1 /**
2  * <copyright>
3  *
4  * Copyright (c) 2004-2005 IBM Corporation and others.
5  * All rights reserved. This program and the accompanying materials
6  * are made available under the terms of the Eclipse Public License v1.0
7  * which accompanies this distribution, and is available at
8  * http://www.eclipse.org/legal/epl-v10.html
9  *
10  * Contributors:
11  * IBM - Initial API and implementation
12  *
13  * </copyright>
14  *
15  * $Id: Ecore2EcoreFactory.java,v 1.3 2005/06/08 06:21:24 nickb Exp $
16  */

17 package org.eclipse.emf.mapping.ecore2ecore;
18
19
20 import org.eclipse.emf.ecore.EFactory;
21
22
23 /**
24  * <!-- begin-user-doc -->
25  * The <b>Factory</b> for the model.
26  * It provides a create method for each non-abstract class of the model.
27  * <!-- end-user-doc -->
28  * @see org.eclipse.emf.mapping.ecore2ecore.Ecore2EcorePackage
29  * @generated
30  */

31 public interface Ecore2EcoreFactory extends EFactory
32 {
33   /**
34    * The singleton instance of the factory.
35    * <!-- begin-user-doc -->
36    * <!-- end-user-doc -->
37    * @generated
38    */

39   Ecore2EcoreFactory eINSTANCE = new org.eclipse.emf.mapping.ecore2ecore.impl.Ecore2EcoreFactoryImpl();
40
41   /**
42    * Returns a new object of class '<em>Mapping Root</em>'.
43    * <!-- begin-user-doc -->
44    * <!-- end-user-doc -->
45    * @return a new object of class '<em>Mapping Root</em>'.
46    * @generated
47    */

48   Ecore2EcoreMappingRoot createEcore2EcoreMappingRoot();
49
50   /**
51    * Returns the package supported by this factory.
52    * <!-- begin-user-doc -->
53    * <!-- end-user-doc -->
54    * @return the package supported by this factory.
55    * @generated
56    */

57   Ecore2EcorePackage getEcore2EcorePackage();
58
59 } //Ecore2EcoreFactory
60
Popular Tags