This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-vfs.git
The following commit(s) were added to refs/heads/master by this push: new 7b881895c Javadoc 7b881895c is described below commit 7b881895c6ba12a0673e78ac1d3276cf098d3433 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sat Mar 22 10:22:19 2025 -0400 Javadoc --- .../commons/vfs2/provider/AbstractFileName.java | 28 +++++++++++----------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractFileName.java b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractFileName.java index 81304f827..96859eb73 100644 --- a/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractFileName.java +++ b/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractFileName.java @@ -171,7 +171,7 @@ public abstract class AbstractFileName implements FileName { } /** - * Returns the base name of the file. + * Gets the base name of the file. * * @return The base name of the file. */ @@ -190,7 +190,7 @@ public abstract class AbstractFileName implements FileName { } /** - * Returns the depth of this file name, within its file system. + * Gets the depth of this file name, within its file system. * * @return The depth of the file name. */ @@ -208,7 +208,7 @@ public abstract class AbstractFileName implements FileName { } /** - * Returns the extension of this file name. + * Gets the extension of this file name. * * @return The file extension. */ @@ -233,7 +233,7 @@ public abstract class AbstractFileName implements FileName { } /** - * Returns the URI without a password. + * Gets the URI without a password. * * @return the URI without a password. */ @@ -243,7 +243,7 @@ public abstract class AbstractFileName implements FileName { } /** - * Create a path that does not use the FileType since that field is not immutable. + * Gets a path that does not use the FileType since that field is not immutable. * * @return The key. */ @@ -255,7 +255,7 @@ public abstract class AbstractFileName implements FileName { } /** - * Returns the name of the parent of the file. + * Gets the name of the parent of the file. * * @return the FileName of the parent. */ @@ -277,7 +277,7 @@ public abstract class AbstractFileName implements FileName { } /** - * Returns the absolute path of the file, relative to the root of the file system that the file belongs to. + * Gets the absolute path of the file, relative to the root of the file system that the file belongs to. * * @return The path String. */ @@ -290,7 +290,7 @@ public abstract class AbstractFileName implements FileName { } /** - * Returns the decoded path. + * Gets the decoded path. * * @return The decoded path String. * @throws FileSystemException If an error occurs. @@ -305,7 +305,7 @@ public abstract class AbstractFileName implements FileName { } /** - * Converts a file name to a relative name, relative to this file name. + * Gets a file name to a relative name, relative to this file name. * * @param name The FileName. * @return The relative path to the file. @@ -363,7 +363,7 @@ public abstract class AbstractFileName implements FileName { } /** - * find the root of the file system. + * Gets the root of the file system. * * @return The root FileName. */ @@ -378,7 +378,7 @@ public abstract class AbstractFileName implements FileName { } /** - * Returns the root URI of the file system this file belongs to. + * Gets the root URI of the file system this file belongs to. * * @return The URI of the root. */ @@ -394,7 +394,7 @@ public abstract class AbstractFileName implements FileName { } /** - * Returns the URI scheme of this file. + * Gets the URI scheme of this file. * * @return The protocol used to access the file. */ @@ -404,7 +404,7 @@ public abstract class AbstractFileName implements FileName { } /** - * Returns the requested or current type of this name. + * Gets the requested or current type of this name. * <p> * The "requested" type is the one determined during resolving the name. n this case the name is a * {@link FileType#FOLDER} if it ends with an "/" else it will be a {@link FileType#FILE}. @@ -421,7 +421,7 @@ public abstract class AbstractFileName implements FileName { } /** - * Returns the absolute URI of the file. + * Gets the absolute URI of the file. * * @return The absolute URI of the file. */