1 /** 2 * <copyright> 3 * 4 * Copyright (c) 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: Ecore2XMLFactory.java,v 1.2 2005/06/21 16:17:03 khussey Exp $ 16 */ 17 package org.eclipse.emf.mapping.ecore2xml; 18 19 import org.eclipse.emf.ecore.EFactory; 20 21 /** 22 * <!-- begin-user-doc --> 23 * The <b>Factory</b> for the model. 24 * It provides a create method for each non-abstract class of the model. 25 * <!-- end-user-doc --> 26 * @see org.eclipse.emf.mapping.ecore2xml.Ecore2XMLPackage 27 * @generated 28 */ 29 public interface Ecore2XMLFactory extends EFactory{ 30 /** 31 * The singleton instance of the factory. 32 * <!-- begin-user-doc --> 33 * <!-- end-user-doc --> 34 * @generated 35 */ 36 Ecore2XMLFactory eINSTANCE = new org.eclipse.emf.mapping.ecore2xml.impl.Ecore2XMLFactoryImpl(); 37 38 /** 39 * Returns a new object of class '<em>XML Info</em>'. 40 * <!-- begin-user-doc --> 41 * <!-- end-user-doc --> 42 * @return a new object of class '<em>XML Info</em>'. 43 * @generated 44 */ 45 XMLInfo createXMLInfo(); 46 47 /** 48 * Returns a new object of class '<em>XML Map</em>'. 49 * <!-- begin-user-doc --> 50 * <!-- end-user-doc --> 51 * @return a new object of class '<em>XML Map</em>'. 52 * @generated 53 */ 54 XMLMap createXMLMap(); 55 56 /** 57 * Returns the package supported by this factory. 58 * <!-- begin-user-doc --> 59 * <!-- end-user-doc --> 60 * @return the package supported by this factory. 61 * @generated 62 */ 63 Ecore2XMLPackage getEcore2XMLPackage(); 64 65 } //Ecore2XMLFactory 66