Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.emf.teneo.samples/src/extlibrary/util/ExtlibraryXMLProcessor.java')
-rw-r--r--examples/org.eclipse.emf.teneo.samples/src/extlibrary/util/ExtlibraryXMLProcessor.java50
1 files changed, 0 insertions, 50 deletions
diff --git a/examples/org.eclipse.emf.teneo.samples/src/extlibrary/util/ExtlibraryXMLProcessor.java b/examples/org.eclipse.emf.teneo.samples/src/extlibrary/util/ExtlibraryXMLProcessor.java
deleted file mode 100644
index 05a7b6bff..000000000
--- a/examples/org.eclipse.emf.teneo.samples/src/extlibrary/util/ExtlibraryXMLProcessor.java
+++ /dev/null
@@ -1,50 +0,0 @@
-/**
- * <copyright>
- * </copyright>
- *
- * $Id: ExtlibraryXMLProcessor.java,v 1.1 2006/08/14 05:08:58 mtaal Exp $
- */
-package extlibrary.util;
-
-import extlibrary.ExtlibraryPackage;
-
-import java.util.Map;
-
-import org.eclipse.emf.ecore.EPackage;
-
-import org.eclipse.emf.ecore.xmi.util.XMLProcessor;
-
-/**
- * This class contains helper methods to serialize and deserialize XML documents
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @generated
- */
-public class ExtlibraryXMLProcessor extends XMLProcessor {
- /**
- * Public constructor to instantiate the helper.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @generated
- */
- public ExtlibraryXMLProcessor() {
- super((EPackage.Registry.INSTANCE));
- ExtlibraryPackage.eINSTANCE.eClass();
- }
-
- /**
- * Register for "*" and "xml" file extensions the ExtlibraryResourceFactoryImpl factory.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @generated
- */
- protected Map getRegistrations() {
- if (registrations == null) {
- super.getRegistrations();
- registrations.put(XML_EXTENSION, new ExtlibraryResourceFactoryImpl());
- registrations.put(STAR_EXTENSION, new ExtlibraryResourceFactoryImpl());
- }
- return registrations;
- }
-
-} //ExtlibraryXMLProcessor

Back to the top