1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 15:15:25 +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
* 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 <code>null</code> if not classifiable.
*/
public String getClassification();