Skip to content

Commit

Permalink
Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Nov 11, 2023
1 parent 1a0b535 commit b6535fd
Show file tree
Hide file tree
Showing 13 changed files with 21 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class HdfsFileSystem extends AbstractFileSystem {
private FileSystem fs;

/**
* Construct file system.
* Constructs file system.
*
* @param rootName Name of the root directory of this file system.
* @param fileSystemOptions options for this file system instance.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public static void main(String[] args) throws Exception {
private final ServerConnector connector = new ServerConnector(server);

/**
* Construct Main application instance.
* Constructs Main application instance.
* <P>
* <EM>Note:</EM> Constructor is protected because other projects such as Commons VFS can extend this for some reasons
* (e.g, unit testing against Jackrabbit WebDAV).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public String getShare() {
}

/**
* Construct the path suitable for SmbFile when used with NtlmPasswordAuthentication.
* Constructs the path suitable for SmbFile when used with NtlmPasswordAuthentication.
*
* @return caches and return URI with no username/password, never null
* @throws FileSystemException if any of the invoked methods throw
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class RegexFileFilter implements FileFilter, Serializable {
private final Pattern pattern;

/**
* Construct a new regular expression filter for a compiled regular expression.
* Constructs a new regular expression filter for a compiled regular expression.
*
* @param pattern regular expression to match - Cannot be null
*/
Expand All @@ -70,7 +70,7 @@ public RegexFileFilter(final Pattern pattern) {
}

/**
* Construct a new regular expression filter.
* Constructs a new regular expression filter.
*
* @param pattern regular string expression to match - Cannot be null
*/
Expand All @@ -83,7 +83,7 @@ public RegexFileFilter(final String pattern) {
}

/**
* Construct a new regular expression filter with the specified flags.
* Constructs a new regular expression filter with the specified flags.
*
* @param pattern regular string expression to match
* @param flags pattern flags - e.g. {@link Pattern#CASE_INSENSITIVE}
Expand All @@ -96,7 +96,7 @@ public RegexFileFilter(final String pattern, final int flags) {
}

/**
* Construct a new regular expression filter with the specified flags case
* Constructs a new regular expression filter with the specified flags case
* sensitivity.
*
* @param pattern regular string expression to match - Cannot be null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ static boolean wildcardMatch(final String fileName, final String wildcardMatcher
private final List<String> wildcards;

/**
* Construct a new wildcard filter for a list of wildcards specifying
* Constructs a new wildcard filter for a list of wildcards specifying
* case-sensitivity.
*
* @param caseSensitivity how to handle case sensitivity, null means
Expand All @@ -224,7 +224,7 @@ public WildcardFileFilter(final IOCase caseSensitivity, final List<String> wildc
}

/**
* Construct a new wildcard filter for an array of wildcards specifying
* Constructs a new wildcard filter for an array of wildcards specifying
* case-sensitivity.
*
* @param caseSensitivity how to handle case sensitivity, null means
Expand All @@ -240,7 +240,7 @@ public WildcardFileFilter(final IOCase caseSensitivity, final String... wildcard
}

/**
* Construct a new case-sensitive wildcard filter for a list of wildcards.
* Constructs a new case-sensitive wildcard filter for a list of wildcards.
*
* @param wildcards the list of wildcards to match, not null
*/
Expand All @@ -249,7 +249,7 @@ public WildcardFileFilter(final List<String> wildcards) {
}

/**
* Construct a new case-sensitive wildcard filter for an array of wildcards.
* Constructs a new case-sensitive wildcard filter for an array of wildcards.
* <p>
* The array is not cloned, so could be changed after constructing the instance.
* This would be inadvisable however.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public class Http4FileObject<FS extends Http4FileSystem> extends AbstractFileObj
private HttpResponse lastHeadResponse;

/**
* Construct {@code Http4FileObject}.
* Constructs {@code Http4FileObject}.
*
* @param name file name
* @param fileSystem file system
Expand All @@ -80,7 +80,7 @@ protected Http4FileObject(final AbstractFileName name, final FS fileSystem)
}

/**
* Construct {@code Http4FileObject}.
* Constructs {@code Http4FileObject}.
*
* @param name file name
* @param fileSystem file system
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public class Http4FileSystem extends AbstractFileSystem {
private final HttpClientContext httpClientContext;

/**
* Construct {@code Http4FileSystem}.
* Constructs {@code Http4FileSystem}.
*
* @param rootName root base name
* @param fileSystemOptions file system options
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ private Http4FileSystemConfigBuilder() {
}

/**
* Construct an {@code Http4FileSystemConfigBuilder}.
* Constructs an {@code Http4FileSystemConfigBuilder}.
*
* @param prefix String for properties of this file system.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public class Http4sFileProvider extends Http4FileProvider {

/**
* Construct a {@code Http4sFileProvider}.
* Constructs a {@code Http4sFileProvider}.
*/
public Http4sFileProvider() {
setFileNameParser(Http4sFileNameParser.getInstance());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public class Http5FileObject<FS extends Http5FileSystem> extends AbstractFileObj
private HttpResponse lastHeadResponse;

/**
* Construct {@code Http4FileObject}.
* Constructs {@code Http4FileObject}.
*
* @param name file name
* @param fileSystem file system
Expand All @@ -80,7 +80,7 @@ protected Http5FileObject(final AbstractFileName name, final FS fileSystem)
}

/**
* Construct {@code Http4FileObject}.
* Constructs {@code Http4FileObject}.
*
* @param name file name
* @param fileSystem file system
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public class Http5FileSystem extends AbstractFileSystem {
private final HttpClientContext httpClientContext;

/**
* Construct {@code Http4FileSystem}.
* Constructs {@code Http4FileSystem}.
*
* @param rootName root base name
* @param fileSystemOptions file system options
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ private Http5FileSystemConfigBuilder() {
}

/**
* Construct an {@code Http4FileSystemConfigBuilder}.
* Constructs an {@code Http4FileSystemConfigBuilder}.
*
* @param prefix String for properties of this file system.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
public class Http5sFileProvider extends Http5FileProvider {

/**
* Construct a {@code Http4sFileProvider}.
* Constructs a {@code Http4sFileProvider}.
*/
public Http5sFileProvider() {
setFileNameParser(Http5sFileNameParser.getInstance());
Expand Down

0 comments on commit b6535fd

Please sign in to comment.