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/FileSystemDeploymentProvider.java')
-rw-r--r--examples/org.eclipse.team.examples.filesystem/src/org/eclipse/team/examples/filesystem/deployment/FileSystemDeploymentProvider.java55
1 files changed, 0 insertions, 55 deletions
diff --git a/examples/org.eclipse.team.examples.filesystem/src/org/eclipse/team/examples/filesystem/deployment/FileSystemDeploymentProvider.java b/examples/org.eclipse.team.examples.filesystem/src/org/eclipse/team/examples/filesystem/deployment/FileSystemDeploymentProvider.java
deleted file mode 100644
index a983aced5..000000000
--- a/examples/org.eclipse.team.examples.filesystem/src/org/eclipse/team/examples/filesystem/deployment/FileSystemDeploymentProvider.java
+++ /dev/null
@@ -1,55 +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.team.core.DeploymentProvider;
-import org.eclipse.team.core.IMemento;
-
-public class FileSystemDeploymentProvider extends DeploymentProvider {
-
- public final static String ID = "org.eclipse.team.examples.filesystem.FileSystemDeploymentProvider";
-
- public String getID() {
- return ID;
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.team.core.DeploymentProvider#init()
- */
- public void init() {
- // TODO Auto-generated method stub
- System.out.println("Initialized " + getName());
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.team.core.DeploymentProvider#dispose()
- */
- public void dispose() {
- // TODO Auto-generated method stub
-
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.team.core.DeploymentProvider#saveState(org.eclipse.team.core.IMemento)
- */
- public void saveState(IMemento memento) {
- // TODO Auto-generated method stub
-
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.team.core.DeploymentProvider#restoreState(org.eclipse.team.core.IMemento)
- */
- public void restoreState(IMemento memento) {
- // TODO Auto-generated method stub
-
- }
-}

Back to the top