Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tcf.te.filesystem.ui/src/org/eclipse/tcf/te/tcf/filesystem/ui/internal/columns/ImageUpdateAdapter.java')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.filesystem.ui/src/org/eclipse/tcf/te/tcf/filesystem/ui/internal/columns/ImageUpdateAdapter.java46
1 files changed, 0 insertions, 46 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.filesystem.ui/src/org/eclipse/tcf/te/tcf/filesystem/ui/internal/columns/ImageUpdateAdapter.java b/target_explorer/plugins/org.eclipse.tcf.te.filesystem.ui/src/org/eclipse/tcf/te/tcf/filesystem/ui/internal/columns/ImageUpdateAdapter.java
deleted file mode 100644
index 1457868ad..000000000
--- a/target_explorer/plugins/org.eclipse.tcf.te.filesystem.ui/src/org/eclipse/tcf/te/tcf/filesystem/ui/internal/columns/ImageUpdateAdapter.java
+++ /dev/null
@@ -1,46 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2012 Wind River Systems, Inc. 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:
- * Wind River Systems - initial API and implementation
- *******************************************************************************/
-package org.eclipse.tcf.te.tcf.filesystem.ui.internal.columns;
-
-import java.io.File;
-
-import org.eclipse.tcf.te.tcf.filesystem.core.model.FSTreeNode;
-
-/**
- * The interface to adapt the process of providing the image for two kinds of
- * files, one which has a local copy or one which does not.
- */
-public interface ImageUpdateAdapter {
-
- /**
- * Get an extension key as the image registry key for the
- * specified node.
- *
- * @param node The node to get the key for.
- * @return The key used to cache the image descriptor in the registry.
- */
- public String getImageKey(FSTreeNode node);
-
- /**
- * Return a mirror file that will be used to retrieve the image from.
- *
- * @param node The file system tree node.
- * @return The corresponding mirror file.
- */
- public File getMirrorFile(FSTreeNode node);
-
- /**
- * Get the image file object for the specified temporary file name.
- *
- * @param tmpName The temporary file name.
- * @return The file object.
- */
- public File getImageFile(FSTreeNode node);
-}

Back to the top