From 74d1a20e8766fb83b3d2cd90ef19ef77dd4254da Mon Sep 17 00:00:00 2001 From: Martin Oberhuber < martin.oberhuber@windriver.com> Date: Fri, 10 Aug 2007 11:18:33 +0000 Subject: [PATCH] Fix Javadoc --- .../subsystems/files/core/subsystems/IRemoteFile.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/IRemoteFile.java b/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/IRemoteFile.java index 48a5e2c341e..9b92656ee0b 100644 --- a/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/IRemoteFile.java +++ b/rse/plugins/org.eclipse.rse.subsystems.files.core/src/org/eclipse/rse/subsystems/files/core/subsystems/IRemoteFile.java @@ -299,11 +299,12 @@ public interface IRemoteFile extends IRemoteContainer, IRemotePropertyHolder, IS /** * Returns the classification of this file. If the file is * an executable, then "executable(...)" will be returned. If the - * file is a symbolic link then it will appear as "link(....):resolvedPath". + * file is a symbolic link then it will appear as "symbolic link(....):resolvedPath". * The resolvedPath is the path that the link resolves to. - * A symbolic link that resolves to an executable would appear as "link(executable(...)):resolvedPath". - * By default this should just return "file". - * @return the classification. + * A symbolic link that resolves to an executable would appear as + * "symbolic link(executable(...)):resolvedPath". + * By default this should just return "file" or "directory". + * @return the classification, or "unknown", or null if not classifiable. */ public String getClassification();