1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-15 04:55:22 +02:00

Fix Javadoc

This commit is contained in:
Martin Oberhuber 2007-08-10 11:18:33 +00:00
parent 78b6739a1c
commit 74d1a20e87

View file

@ -299,11 +299,12 @@ public interface IRemoteFile extends IRemoteContainer, IRemotePropertyHolder, IS
/** /**
* Returns the classification of this file. If the file is * Returns the classification of this file. If the file is
* an executable, then "executable(...)" will be returned. If the * 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. * The resolvedPath is the path that the link resolves to.
* A symbolic link that resolves to an executable would appear as "link(executable(...)):resolvedPath". * A symbolic link that resolves to an executable would appear as
* By default this should just return "file". * "symbolic link(executable(...)):resolvedPath".
* @return the classification. * By default this should just return "file" or "directory".
* @return the classification, or "unknown", or <code>null</code> if not classifiable.
*/ */
public String getClassification(); public String getClassification();