Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.team.examples.filesystem/src/org/eclipse/team/examples/filesystem/deployment/DeployAction.java')
-rw-r--r--examples/org.eclipse.team.examples.filesystem/src/org/eclipse/team/examples/filesystem/deployment/DeployAction.java48
1 files changed, 0 insertions, 48 deletions
diff --git a/examples/org.eclipse.team.examples.filesystem/src/org/eclipse/team/examples/filesystem/deployment/DeployAction.java b/examples/org.eclipse.team.examples.filesystem/src/org/eclipse/team/examples/filesystem/deployment/DeployAction.java
deleted file mode 100644
index 7fc9c2790..000000000
--- a/examples/org.eclipse.team.examples.filesystem/src/org/eclipse/team/examples/filesystem/deployment/DeployAction.java
+++ /dev/null
@@ -1,48 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2003 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.team.examples.filesystem.deployment;
-
-import org.eclipse.core.resources.IContainer;
-import org.eclipse.core.resources.IResource;
-import org.eclipse.jface.action.IAction;
-import org.eclipse.jface.dialogs.ErrorDialog;
-import org.eclipse.team.core.*;
-import org.eclipse.team.internal.ui.actions.TeamAction;
-import org.eclipse.ui.IActionDelegate;
-
-public class DeployAction extends TeamAction implements IActionDelegate {
-
- public void run(IAction action) {
- IContainer container = (IContainer)getSelectedResources()[0];
- IDeploymentProviderManager manager = Team.getDeploymentManager();
- FileSystemDeploymentProvider provider = new FileSystemDeploymentProvider();
- try {
- manager.map(container, provider);
- } catch (TeamException e) {
- ErrorDialog.openError(getShell(), "Error", "Mapping", e.getStatus());
- }
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.team.internal.ui.actions.TeamAction#isEnabled()
- */
- protected boolean isEnabled() throws TeamException {
- IResource[] resources = getSelectedResources();
- if(resources.length == 1) {
- IResource resource = resources[0];
- IDeploymentProviderManager manager = Team.getDeploymentManager();
- if(manager.getMappedTo(resource, FileSystemDeploymentProvider.ID)) {
- return false;
- }
- }
- return true;
- }
-} \ No newline at end of file

Back to the top