Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tcf.te.tcf.filesystem.ui/src/org/eclipse/tcf/te/tcf/filesystem/ui/internal/columns/ImageUpdateAdapter.java')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.tcf.filesystem.ui/src/org/eclipse/tcf/te/tcf/filesystem/ui/internal/columns/ImageUpdateAdapter.java21
1 files changed, 10 insertions, 11 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.tcf.filesystem.ui/src/org/eclipse/tcf/te/tcf/filesystem/ui/internal/columns/ImageUpdateAdapter.java b/target_explorer/plugins/org.eclipse.tcf.te.tcf.filesystem.ui/src/org/eclipse/tcf/te/tcf/filesystem/ui/internal/columns/ImageUpdateAdapter.java
index 1457868ad..1a3e81dd4 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.tcf.filesystem.ui/src/org/eclipse/tcf/te/tcf/filesystem/ui/internal/columns/ImageUpdateAdapter.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.tcf.filesystem.ui/src/org/eclipse/tcf/te/tcf/filesystem/ui/internal/columns/ImageUpdateAdapter.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2012 Wind River Systems, Inc. and others. All rights reserved.
+ * Copyright (c) 2012, 2015 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
@@ -11,7 +11,7 @@ package org.eclipse.tcf.te.tcf.filesystem.ui.internal.columns;
import java.io.File;
-import org.eclipse.tcf.te.tcf.filesystem.core.model.FSTreeNode;
+import org.eclipse.tcf.te.tcf.filesystem.core.interfaces.runtime.IFSTreeNode;
/**
* The interface to adapt the process of providing the image for two kinds of
@@ -20,27 +20,26 @@ import org.eclipse.tcf.te.tcf.filesystem.core.model.FSTreeNode;
public interface ImageUpdateAdapter {
/**
- * Get an extension key as the image registry key for the
+ * 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);
-
+ public String getImageKey(IFSTreeNode 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);
+ public File getMirrorFile(IFSTreeNode 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);
+ public File getImageFile(IFSTreeNode node);
}

Back to the top