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.wst.common.modulecore/modulecore-src/org/eclipse/wst/common/componentcore/internal/util/WTPModulesTranslator.java')
-rw-r--r--plugins/org.eclipse.wst.common.modulecore/modulecore-src/org/eclipse/wst/common/componentcore/internal/util/WTPModulesTranslator.java115
1 files changed, 0 insertions, 115 deletions
diff --git a/plugins/org.eclipse.wst.common.modulecore/modulecore-src/org/eclipse/wst/common/componentcore/internal/util/WTPModulesTranslator.java b/plugins/org.eclipse.wst.common.modulecore/modulecore-src/org/eclipse/wst/common/componentcore/internal/util/WTPModulesTranslator.java
deleted file mode 100644
index b88af6be8..000000000
--- a/plugins/org.eclipse.wst.common.modulecore/modulecore-src/org/eclipse/wst/common/componentcore/internal/util/WTPModulesTranslator.java
+++ /dev/null
@@ -1,115 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2005, 2006 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.wst.common.componentcore.internal.util;
-
-import org.eclipse.emf.ecore.EStructuralFeature;
-import org.eclipse.wst.common.componentcore.internal.ComponentcorePackage;
-import org.eclipse.wst.common.internal.emf.resource.GenericTranslator;
-import org.eclipse.wst.common.internal.emf.resource.IDTranslator;
-import org.eclipse.wst.common.internal.emf.resource.RootTranslator;
-import org.eclipse.wst.common.internal.emf.resource.Translator;
-
-
-public class WTPModulesTranslator extends RootTranslator implements WTPModulesXmlMapperI{
- public static WTPModulesTranslator INSTANCE = new WTPModulesTranslator();
- private static Translator[] children;
- private static final ComponentcorePackage MODULE_CORE_PKG = ComponentcorePackage.eINSTANCE;
- /**
- * @param domNameAndPath
- * @param eClass
- */
- public WTPModulesTranslator() {
- super(PROJECT_MODULES, ComponentcorePackage.eINSTANCE.getProjectComponents());
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.wst.common.internal.emf.resource.Translator#getChildren(java.lang.Object, int)
- */
- public Translator[] getChildren(Object target, int versionID) {
- if(children == null)
- children = createWTPModulesTranslator();
- return children;
- }
-
- private static Translator[] createWTPModulesTranslator() {
- return new Translator[] {
- IDTranslator.INSTANCE,
- new Translator(PROJECT_VERSION, MODULE_CORE_PKG.getProjectComponents_Version(), DOM_ATTRIBUTE),
- createWBModuleTranslator(MODULE_CORE_PKG.getProjectComponents_Components())
- };
- }
-
- /**
- * @return
- */
- private static Translator createWBModuleTranslator(EStructuralFeature afeature) {
- GenericTranslator result = new GenericTranslator(WORKBENCH_COMPONENT, afeature);
- result.setChildren(new Translator[] {
- IDTranslator.INSTANCE,
- //new Translator(HANDLE, MODULE_CORE_PKG.getWorkbenchComponent_Handle(), DOM_ATTRIBUTE), REMOVED SINCE HANDLE SHOULD NOW BE DERIVED -MDE
- new Translator(RUNTIME_NAME, MODULE_CORE_PKG.getWorkbenchComponent_Name(), DOM_ATTRIBUTE),
- createModuleTypeTranslator(MODULE_CORE_PKG.getWorkbenchComponent_ComponentType()),
- createWBResourceTranslator(MODULE_CORE_PKG.getWorkbenchComponent_Resources()),
- createDependentModuleTranslator(MODULE_CORE_PKG.getWorkbenchComponent_ReferencedComponents()),
- new IPathTranslator(META_RESOURCES, MODULE_CORE_PKG.getWorkbenchComponent_MetadataResources()),
- createPropertiesTranslator(MODULE_CORE_PKG.getWorkbenchComponent_Properties())
- });
- return result;
- }
- private static Translator createModuleTypeTranslator(EStructuralFeature afeature) {
- GenericTranslator result = new GenericTranslator(MODULE_TYPE, afeature);
- result.setChildren(new Translator[] {
- new Translator(COMPONENT_TYPE_ID, MODULE_CORE_PKG.getComponentType_ComponentTypeId(), DOM_ATTRIBUTE),
- new Translator(META_RESOURCES, MODULE_CORE_PKG.getComponentType_MetadataResources()),
- new Translator(COMPONENT_TYPE_VERSION, MODULE_CORE_PKG.getComponentType_Version()),
- createPropertiesTranslator(MODULE_CORE_PKG.getComponentType_Properties())
-
- });
- return result;
- }
-
- private static Translator createPropertiesTranslator(EStructuralFeature afeature){
- GenericTranslator result = new GenericTranslator(PROPERTY, afeature);
- result.setChildren(new Translator[] {
- new Translator(PROPERTY_NAME, MODULE_CORE_PKG.getProperty_Name(), DOM_ATTRIBUTE ),
- new Translator(PROPERTY_VALUE, MODULE_CORE_PKG.getProperty_Value(), DOM_ATTRIBUTE ),
-
- });
- return result;
- }
-
-
- private static Translator createDependentModuleTranslator(EStructuralFeature afeature) {
- GenericTranslator result = new GenericTranslator(REFERENCED_COMPONENT, afeature);
- result.setChildren(new Translator[] {
- new IPathTranslator(RUNTIME_PATH, MODULE_CORE_PKG.getReferencedComponent_RuntimePath(), DOM_ATTRIBUTE),
- new URITranslator(HANDLE, MODULE_CORE_PKG.getReferencedComponent_Handle(), DOM_ATTRIBUTE),
- new HRefTranslator(DEP_OBJECT,MODULE_CORE_PKG.getReferencedComponent_DependentObject()),
- new Translator(ARCHIVE_NAME, MODULE_CORE_PKG.getReferencedComponent_ArchiveName(), DOM_ATTRIBUTE),
- new DependencyTypeTranslator()
- });
- return result;
- }
-
-
- private static Translator createWBResourceTranslator(EStructuralFeature afeature) {
- GenericTranslator result = new GenericTranslator(COMPONENT_RESOURCE, afeature);
- result.setChildren(new Translator[] {
- IDTranslator.INSTANCE,
- new IPathTranslator(SOURCE_PATH, MODULE_CORE_PKG.getComponentResource_SourcePath(), DOM_ATTRIBUTE),
- new IPathTranslator(RUNTIME_PATH, MODULE_CORE_PKG.getComponentResource_RuntimePath(), DOM_ATTRIBUTE),
- new Translator(RESOURCE_TYPE, MODULE_CORE_PKG.getComponentResource_ResourceType(), DOM_ATTRIBUTE),
- new Translator(EXCLUSIONS, MODULE_CORE_PKG.getComponentResource_Exclusions())
- });
- return result;
- }
-
-}

Back to the top