From 8b162d567dc13b9ae576422744854684a6c3ceb1 Mon Sep 17 00:00:00 2001 From: Matthew Jason Benson Date: Thu, 10 Feb 2005 23:20:06 +0000 Subject: [PATCH] More javadoc git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@277632 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/tools/ant/DirectoryScanner.java | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/main/org/apache/tools/ant/DirectoryScanner.java b/src/main/org/apache/tools/ant/DirectoryScanner.java index d2a294a90..638b61512 100644 --- a/src/main/org/apache/tools/ant/DirectoryScanner.java +++ b/src/main/org/apache/tools/ant/DirectoryScanner.java @@ -332,7 +332,7 @@ public class DirectoryScanner } /** - * Tests whether or not a given path matches the start of a given + * Test whether or not a given path matches the start of a given * pattern up to the first "**". *

* This is not a general purpose test and should only be used if you @@ -352,7 +352,7 @@ public class DirectoryScanner } /** - * Tests whether or not a given path matches the start of a given + * Test whether or not a given path matches the start of a given * pattern up to the first "**". *

* This is not a general purpose test and should only be used if you @@ -375,7 +375,7 @@ public class DirectoryScanner } /** - * Tests whether or not a given path matches a given pattern. + * Test whether or not a given path matches a given pattern. * * @param pattern The pattern to match against. Must not be * null. @@ -390,7 +390,7 @@ public class DirectoryScanner } /** - * Tests whether or not a given path matches a given pattern. + * Test whether or not a given path matches a given pattern. * * @param pattern The pattern to match against. Must not be * null. @@ -408,7 +408,7 @@ public class DirectoryScanner } /** - * Tests whether or not a string matches against a pattern. + * Test whether or not a string matches against a pattern. * The pattern may contain two special characters:
* '*' means zero or more characters
* '?' means one and only one character @@ -426,7 +426,7 @@ public class DirectoryScanner } /** - * Tests whether or not a string matches against a pattern. + * Test whether or not a string matches against a pattern. * The pattern may contain two special characters:
* '*' means zero or more characters
* '?' means one and only one character @@ -496,7 +496,7 @@ public class DirectoryScanner } /** - * Go back to the hardwired default exclude patterns. + * Go back to the hardwired default exclude patterns. * * @since Ant 1.6 */ @@ -508,7 +508,7 @@ public class DirectoryScanner } /** - * Sets the base directory to be scanned. This is the directory which is + * Set the base directory to be scanned. This is the directory which is * scanned recursively. All '/' and '\' characters are replaced by * File.separatorChar, so the separator used need not match * File.separatorChar. @@ -522,7 +522,7 @@ public class DirectoryScanner } /** - * Sets the base directory to be scanned. This is the directory which is + * Set the base directory to be scanned. This is the directory which is * scanned recursively. * * @param basedir The base directory for scanning. @@ -895,7 +895,7 @@ public class DirectoryScanner } /** - * Scans the given directory for files and directories. Found files and + * Scan the given directory for files and directories. Found files and * directories are placed in their respective collections, based on the * matching of includes, excludes, and the selectors. When a directory * is found, it is scanned recursively.