Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.jst.j2ee/earproject/org/eclipse/jst/j2ee/application/operations/EnterpriseApplicationCreationOperationOld.java')
-rw-r--r--plugins/org.eclipse.jst.j2ee/earproject/org/eclipse/jst/j2ee/application/operations/EnterpriseApplicationCreationOperationOld.java74
1 files changed, 0 insertions, 74 deletions
diff --git a/plugins/org.eclipse.jst.j2ee/earproject/org/eclipse/jst/j2ee/application/operations/EnterpriseApplicationCreationOperationOld.java b/plugins/org.eclipse.jst.j2ee/earproject/org/eclipse/jst/j2ee/application/operations/EnterpriseApplicationCreationOperationOld.java
deleted file mode 100644
index cc8cd4e57..000000000
--- a/plugins/org.eclipse.jst.j2ee/earproject/org/eclipse/jst/j2ee/application/operations/EnterpriseApplicationCreationOperationOld.java
+++ /dev/null
@@ -1,74 +0,0 @@
-/***************************************************************************************************
- * Copyright (c) 2003, 2004 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
- **************************************************************************************************/
-/*
- * Created on Oct 27, 2003
- *
- * To change the template for this generated file go to Window>Preferences>Java>Code
- * Generation>Code and Comments
- */
-package org.eclipse.jst.j2ee.application.operations;
-
-import java.lang.reflect.InvocationTargetException;
-
-import org.eclipse.core.runtime.CoreException;
-import org.eclipse.core.runtime.IProgressMonitor;
-import org.eclipse.jst.j2ee.internal.earcreation.EAREditModel;
-import org.eclipse.jst.j2ee.internal.earcreation.IEARNatureConstants;
-import org.eclipse.jst.j2ee.internal.project.J2EENature;
-import org.eclipse.wst.common.frameworks.internal.operations.ProjectCreationDataModel;
-import org.eclipse.wst.common.frameworks.internal.operations.ProjectCreationOperation;
-import org.eclipse.wst.common.internal.emfworkbench.operation.EditModelOperation;
-
-public class EnterpriseApplicationCreationOperationOld extends J2EEArtifactCreationOperationOld {
-
- public EnterpriseApplicationCreationOperationOld(EnterpriseApplicationCreationDataModelOld dataModel) {
- super(dataModel);
- }
-
- protected void execute(IProgressMonitor monitor) throws CoreException, InvocationTargetException, InterruptedException {
- EnterpriseApplicationCreationDataModelOld dataModel = (EnterpriseApplicationCreationDataModelOld) operationDataModel;
-
- createProject(monitor);
- setVersion((J2EENature) dataModel.getProjectDataModel().getProject().getNature(IEARNatureConstants.NATURE_ID), monitor);
- addServerTarget(monitor);
- if (dataModel.getBooleanProperty(EnterpriseApplicationCreationDataModelOld.CREATE_DEFAULT_FILES)) {
- createApplication(dataModel, monitor);
- }
- addModules(dataModel.getAddModulesToEARDataModel(), monitor);
- }
-
- protected void createProject(IProgressMonitor monitor) throws CoreException, InvocationTargetException, InterruptedException {
- ProjectCreationDataModel projectModel = ((J2EEArtifactCreationDataModelOld) operationDataModel).getProjectDataModel();
- ProjectCreationOperation projectOperation = new ProjectCreationOperation(projectModel);
- projectOperation.doRun(monitor);
- }
-
- private void addModules(AddArchiveProjectsToEARDataModel model, IProgressMonitor monitor) throws CoreException, InvocationTargetException, InterruptedException {
- if (null != model) {
- AddArchiveProjectsToEAROperation modulesOperation = new AddArchiveProjectsToEAROperation(model);
- modulesOperation.doRun(monitor);
- }
- }
-
- private void createApplication(EnterpriseApplicationCreationDataModelOld dataModel, IProgressMonitor monitor) throws CoreException, InvocationTargetException, InterruptedException {
- EditModelOperation op = new EditModelOperation(dataModel) {
- protected void execute(IProgressMonitor aMonitor) throws CoreException, InvocationTargetException, InterruptedException {
- EAREditModel earEditModel = (EAREditModel) editModel;
- earEditModel.makeDeploymentDescriptorWithRoot();
- }
- };
- op.doRun(monitor);
- }
-
- protected void setVersion(J2EENature nature, IProgressMonitor monitor) throws CoreException, InvocationTargetException, InterruptedException {
- EnterpriseApplicationCreationDataModelOld dataModel = (EnterpriseApplicationCreationDataModelOld) operationDataModel;
- nature.setModuleVersion(dataModel.getIntProperty(EnterpriseApplicationCreationDataModelOld.APPLICATION_VERSION));
- }
-
-} \ No newline at end of file

Back to the top