Skip to content

Commit 7b88189

Browse files
committed
Javadoc
1 parent d69bb8f commit 7b88189

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractFileName.java

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ public boolean equals(final Object o) {
171171
}
172172

173173
/**
174-
* Returns the base name of the file.
174+
* Gets the base name of the file.
175175
*
176176
* @return The base name of the file.
177177
*/
@@ -190,7 +190,7 @@ public String getBaseName() {
190190
}
191191

192192
/**
193-
* Returns the depth of this file name, within its file system.
193+
* Gets the depth of this file name, within its file system.
194194
*
195195
* @return The depth of the file name.
196196
*/
@@ -208,7 +208,7 @@ public int getDepth() {
208208
}
209209

210210
/**
211-
* Returns the extension of this file name.
211+
* Gets the extension of this file name.
212212
*
213213
* @return The file extension.
214214
*/
@@ -233,7 +233,7 @@ public String getExtension() {
233233
}
234234

235235
/**
236-
* Returns the URI without a password.
236+
* Gets the URI without a password.
237237
*
238238
* @return the URI without a password.
239239
*/
@@ -243,7 +243,7 @@ public String getFriendlyURI() {
243243
}
244244

245245
/**
246-
* Create a path that does not use the FileType since that field is not immutable.
246+
* Gets a path that does not use the FileType since that field is not immutable.
247247
*
248248
* @return The key.
249249
*/
@@ -255,7 +255,7 @@ private String getKey() {
255255
}
256256

257257
/**
258-
* Returns the name of the parent of the file.
258+
* Gets the name of the parent of the file.
259259
*
260260
* @return the FileName of the parent.
261261
*/
@@ -277,7 +277,7 @@ public FileName getParent() {
277277
}
278278

279279
/**
280-
* Returns the absolute path of the file, relative to the root of the file system that the file belongs to.
280+
* Gets the absolute path of the file, relative to the root of the file system that the file belongs to.
281281
*
282282
* @return The path String.
283283
*/
@@ -290,7 +290,7 @@ public String getPath() {
290290
}
291291

292292
/**
293-
* Returns the decoded path.
293+
* Gets the decoded path.
294294
*
295295
* @return The decoded path String.
296296
* @throws FileSystemException If an error occurs.
@@ -305,7 +305,7 @@ public String getPathDecoded() throws FileSystemException {
305305
}
306306

307307
/**
308-
* Converts a file name to a relative name, relative to this file name.
308+
* Gets a file name to a relative name, relative to this file name.
309309
*
310310
* @param name The FileName.
311311
* @return The relative path to the file.
@@ -363,7 +363,7 @@ public String getRelativeName(final FileName name) throws FileSystemException {
363363
}
364364

365365
/**
366-
* find the root of the file system.
366+
* Gets the root of the file system.
367367
*
368368
* @return The root FileName.
369369
*/
@@ -378,7 +378,7 @@ public FileName getRoot() {
378378
}
379379

380380
/**
381-
* Returns the root URI of the file system this file belongs to.
381+
* Gets the root URI of the file system this file belongs to.
382382
*
383383
* @return The URI of the root.
384384
*/
@@ -394,7 +394,7 @@ public String getRootURI() {
394394
}
395395

396396
/**
397-
* Returns the URI scheme of this file.
397+
* Gets the URI scheme of this file.
398398
*
399399
* @return The protocol used to access the file.
400400
*/
@@ -404,7 +404,7 @@ public String getScheme() {
404404
}
405405

406406
/**
407-
* Returns the requested or current type of this name.
407+
* Gets the requested or current type of this name.
408408
* <p>
409409
* The "requested" type is the one determined during resolving the name. n this case the name is a
410410
* {@link FileType#FOLDER} if it ends with an "/" else it will be a {@link FileType#FILE}.
@@ -421,7 +421,7 @@ public FileType getType() {
421421
}
422422

423423
/**
424-
* Returns the absolute URI of the file.
424+
* Gets the absolute URI of the file.
425425
*
426426
* @return The absolute URI of the file.
427427
*/

0 commit comments

Comments
 (0)