Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.jst.j2ee.core/jee-models/org/eclipse/jst/javaee/application/internal/util/EarXMLHelperImpl.java')
-rw-r--r--plugins/org.eclipse.jst.j2ee.core/jee-models/org/eclipse/jst/javaee/application/internal/util/EarXMLHelperImpl.java44
1 files changed, 0 insertions, 44 deletions
diff --git a/plugins/org.eclipse.jst.j2ee.core/jee-models/org/eclipse/jst/javaee/application/internal/util/EarXMLHelperImpl.java b/plugins/org.eclipse.jst.j2ee.core/jee-models/org/eclipse/jst/javaee/application/internal/util/EarXMLHelperImpl.java
deleted file mode 100644
index ff3bef912..000000000
--- a/plugins/org.eclipse.jst.j2ee.core/jee-models/org/eclipse/jst/javaee/application/internal/util/EarXMLHelperImpl.java
+++ /dev/null
@@ -1,44 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2005, 2007 IBM Corporation 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:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.jst.javaee.application.internal.util;
-
-import org.eclipse.emf.ecore.EPackage;
-import org.eclipse.emf.ecore.xmi.XMLResource;
-import org.eclipse.jst.javaee.application.internal.metadata.ApplicationPackage;
-import org.eclipse.jst.javaee.core.internal.util.JEEXMLHelperImpl;
-
-public class EarXMLHelperImpl extends JEEXMLHelperImpl {
-
- public EarXMLHelperImpl(XMLResource resource) {
- super(resource);
- // TODO Auto-generated constructor stub
- }
-
-
- public String getURI(String prefix) {
- if (prefix != null && prefix.equals(""))
- return ApplicationPackage.eNS_URI;
- else
- return super.getURI(prefix);
- }
-
- protected String getQName(EPackage ePackage, String name, boolean mustHavePrefix)
- {
- String nsPrefix = getPrefix(ePackage, mustHavePrefix);
- // Not using EE5 package namespace - default jee5 namespace is used
- if (nsPrefix.equals(ApplicationPackage.eNS_PREFIX))
- {
- return name;
- }
- else return super.getQName(ePackage, name, mustHavePrefix);
- }
-
-}

Back to the top