/** * Copyright (c) 2012 Obeo. * 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: * Obeo - initial API and implementation */ package org.eclipse.emf.compare; import org.eclipse.emf.ecore.EFactory; /** * * The Factory for the model. * It provides a create method for each non-abstract class of the model. * * @see org.eclipse.emf.compare.ComparePackage * @generated */ public interface CompareFactory extends EFactory { /** * * * @generated */ String copyright = "Copyright (c) 2012 Obeo.\r\nAll rights reserved. This program and the accompanying materials\r\nare made available under the terms of the Eclipse Public License v1.0\r\nwhich accompanies this distribution, and is available at\r\nhttp://www.eclipse.org/legal/epl-v10.html\r\n\r\nContributors:\r\n Obeo - initial API and implementation"; //$NON-NLS-1$ /** * The singleton instance of the factory. * * * @generated */ CompareFactory eINSTANCE = org.eclipse.emf.compare.impl.CompareFactoryImpl.init(); /** * Returns a new object of class 'Comparison'. * * * @return a new object of class 'Comparison'. * @generated */ Comparison createComparison(); /** * Returns a new object of class 'Match Resource'. * * * @return a new object of class 'Match Resource'. * @generated */ MatchResource createMatchResource(); /** * Returns a new object of class 'Match'. * * * @return a new object of class 'Match'. * @generated */ Match createMatch(); /** * Returns a new object of class 'Diff'. * * * @return a new object of class 'Diff'. * @generated */ Diff createDiff(); /** * Returns a new object of class 'Resource Attachment Change'. * * * @return a new object of class 'Resource Attachment Change'. * @generated */ ResourceAttachmentChange createResourceAttachmentChange(); /** * Returns a new object of class 'Reference Change'. * * * @return a new object of class 'Reference Change'. * @generated */ ReferenceChange createReferenceChange(); /** * Returns a new object of class 'Attribute Change'. * * * @return a new object of class 'Attribute Change'. * @generated */ AttributeChange createAttributeChange(); /** * Returns a new object of class 'Conflict'. * * * @return a new object of class 'Conflict'. * @generated */ Conflict createConflict(); /** * Returns a new object of class 'Equivalence'. * * * @return a new object of class 'Equivalence'. * @generated */ Equivalence createEquivalence(); /** * Returns the package supported by this factory. * * * @return the package supported by this factory. * @generated */ ComparePackage getComparePackage(); } //CompareFactory