Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2015-06-25 09:44:09 +0000
committerUwe Stieber2015-06-25 09:44:30 +0000
commit597284bcd363831d7b4891ba09d79355d3f3ec77 (patch)
tree533d866b269ca25c8d5a1694d49bade8dee32d0a /target_explorer
parent4124f90c83abc49198d9f4a74758593610912b22 (diff)
downloadorg.eclipse.tcf-597284bcd363831d7b4891ba09d79355d3f3ec77.tar.gz
org.eclipse.tcf-597284bcd363831d7b4891ba09d79355d3f3ec77.tar.xz
org.eclipse.tcf-597284bcd363831d7b4891ba09d79355d3f3ec77.zip
Target Explorer: Improve file system property tester javadoc
Diffstat (limited to 'target_explorer')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.tcf.filesystem.core/src/org/eclipse/tcf/te/tcf/filesystem/core/internal/testers/FSTreeNodePropertyTester.java23
1 files changed, 16 insertions, 7 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.tcf.filesystem.core/src/org/eclipse/tcf/te/tcf/filesystem/core/internal/testers/FSTreeNodePropertyTester.java b/target_explorer/plugins/org.eclipse.tcf.te.tcf.filesystem.core/src/org/eclipse/tcf/te/tcf/filesystem/core/internal/testers/FSTreeNodePropertyTester.java
index 1985c7f86..4e27a5373 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.tcf.filesystem.core/src/org/eclipse/tcf/te/tcf/filesystem/core/internal/testers/FSTreeNodePropertyTester.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.tcf.filesystem.core/src/org/eclipse/tcf/te/tcf/filesystem/core/internal/testers/FSTreeNodePropertyTester.java
@@ -22,13 +22,22 @@ import org.eclipse.tcf.te.tcf.filesystem.core.internal.utils.ContentTypeHelper;
import org.eclipse.tcf.te.tcf.filesystem.core.model.CacheState;
/**
- * The property tester of an FSTreeNode. The properties include "isFile"
- * if it is a file node, "isDirectory" if it is a directory, "isBinaryFile"
- * if it is a binary file, "isReadable" if it is readable, "isWritable" if
- * it is writable, "isExecutable" if it is executable, "isRoot" if it is a
- * root directory, "isWindows" if it is a windows file node, "isReadOnly"
- * if it is read only, "isHidden" if it is hidden, "getCacheState" to
- * get a node's state.
+ * The property tester of an FSTreeNode.
+ * <p>
+ * The properties include
+ * <ul>
+ * <li>"isFile" if it is a file node,</li>
+ * <li>"isDirectory" if it is a directory,</li>
+ * <li>"isBinaryFile" if it is a binary file,</li>
+ * <li>"isReadable" if it is readable,</li>
+ * <li>"isWritable" if it is writable,</li>
+ * <li>"isExecutable" if it is executable,</li>
+ * <li>"isRoot" if it is a root directory,</li>
+ * <li>"isWindows" if it is a windows file node,</li>
+ * <li>"isReadOnly" if it is read only,</li>
+ * <li>"isHidden" if it is hidden,</li>
+ * <li>"getCacheState" to get a node's state.</li>
+ * </ul>
* <p>
* "testParent" is a property by which the parent or even the grand parent
* of a node can be tested. The arguments is a recursive list of the above

Back to the top