Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.jst.j2ee.core/jee-models/org/eclipse/jst/javaee/application/internal/util/ApplicationResourceImpl.java')
-rw-r--r--plugins/org.eclipse.jst.j2ee.core/jee-models/org/eclipse/jst/javaee/application/internal/util/ApplicationResourceImpl.java70
1 files changed, 0 insertions, 70 deletions
diff --git a/plugins/org.eclipse.jst.j2ee.core/jee-models/org/eclipse/jst/javaee/application/internal/util/ApplicationResourceImpl.java b/plugins/org.eclipse.jst.j2ee.core/jee-models/org/eclipse/jst/javaee/application/internal/util/ApplicationResourceImpl.java
deleted file mode 100644
index 6277f6c7c..000000000
--- a/plugins/org.eclipse.jst.j2ee.core/jee-models/org/eclipse/jst/javaee/application/internal/util/ApplicationResourceImpl.java
+++ /dev/null
@@ -1,70 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 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.common.util.URI;
-import org.eclipse.emf.ecore.EObject;
-import org.eclipse.emf.ecore.xmi.XMLHelper;
-import org.eclipse.emf.ecore.xmi.XMLLoad;
-import org.eclipse.jst.javaee.application.Application;
-import org.eclipse.jst.javaee.application.ApplicationDeploymentDescriptor;
-import org.eclipse.jst.javaee.application.IApplicationResource;
-import org.eclipse.jst.javaee.core.JEEXMLLoadImpl;
-import org.eclipse.jst.javaee.core.internal.util.JavaeeResourceImpl;
-import org.eclipse.wst.common.internal.emf.resource.IRootObjectResource;
-
-/**
- * <!-- begin-user-doc -->
- * The <b>Resource </b> associated with the package.
- * <!-- end-user-doc -->
- * @see org.eclipse.jst.javaee.application.internal.util.ApplicationResourceFactoryImpl
- * @generated
- */
-public class ApplicationResourceImpl extends JavaeeResourceImpl implements IRootObjectResource, IApplicationResource {
- /**
- * Creates an instance of the resource.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @param uri the URI of the new resource.
- * @generated
- */
- public ApplicationResourceImpl(URI uri) {
- super(uri);
- }
- protected XMLLoad createXMLLoad() {
- return new JEEXMLLoadImpl(createXMLHelper());
- }
-
-
- protected XMLHelper createXMLHelper() {
-
- return new EarXMLHelperImpl(this);
- }
- /* (non-Javadoc)
- * @see org.eclipse.jst.javaee.application.internal.util.IApplicationResource#getRootObject()
- */
- public EObject getRootObject() {
- if (contents == null || contents.isEmpty())
- return null;
- Object root = getContents().get(0);
- if(root == null){
- return null;
- }
- return (EObject)((ApplicationDeploymentDescriptor)root).getApplication();
- }
- /* (non-Javadoc)
- * @see org.eclipse.jst.javaee.application.internal.util.IApplicationResource#getApplication()
- */
- public Application getApplication() {
- return (Application)getRootObject();
- }
-
-} //ApplicationResourceImpl

Back to the top