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/earproject/org/eclipse/jst/j2ee/internal/earcreation/RemoveUtilityJARMapCommand.java')
-rw-r--r--plugins/org.eclipse.jst.j2ee/earproject/org/eclipse/jst/j2ee/internal/earcreation/RemoveUtilityJARMapCommand.java59
1 files changed, 0 insertions, 59 deletions
diff --git a/plugins/org.eclipse.jst.j2ee/earproject/org/eclipse/jst/j2ee/internal/earcreation/RemoveUtilityJARMapCommand.java b/plugins/org.eclipse.jst.j2ee/earproject/org/eclipse/jst/j2ee/internal/earcreation/RemoveUtilityJARMapCommand.java
deleted file mode 100644
index 6cf53bd0b..000000000
--- a/plugins/org.eclipse.jst.j2ee/earproject/org/eclipse/jst/j2ee/internal/earcreation/RemoveUtilityJARMapCommand.java
+++ /dev/null
@@ -1,59 +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 Aug 14, 2003
- *
- */
-package org.eclipse.jst.j2ee.internal.earcreation;
-
-import org.eclipse.core.resources.IProject;
-import org.eclipse.jst.j2ee.internal.earcreation.modulemap.UtilityJARMapping;
-
-
-/**
- * @author schacher
- */
-public class RemoveUtilityJARMapCommand extends UtilityJARInEARProjectCommand {
-
- public static final String LABEL = EARCreationResourceHandler.getString("REM_UTIL_JAR_UI"); //$NON-NLS-1$
-
- public RemoveUtilityJARMapCommand(EAREditModel earEditModel, String aUri, IProject aProject) {
- super(earEditModel, aUri, aProject, LABEL);
- }
-
- public RemoveUtilityJARMapCommand(IProject anEarProject, String aUri, IProject aProject) {
- super(anEarProject, aUri, aProject, LABEL);
- }
-
- public RemoveUtilityJARMapCommand(IProject anEarProject, UtilityJARMapping jarMapping, IProject moduleProject) {
- super(anEarProject, null, moduleProject, LABEL);
- map = jarMapping;
- }
-
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.jst.j2ee.internal.internal.internal.earcreation.UtilityJARInEARProjectCommand#primUndo()
- */
- protected void primUndo() {
- addMapping();
- }
-
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.jst.j2ee.internal.internal.internal.earcreation.UtilityJARInEARProjectCommand#primExecute()
- */
- protected void primExecute() {
- removeMapping();
- }
-
-} \ No newline at end of file

Back to the top