Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 5A7A8200CF8 for ; Thu, 14 Sep 2017 21:48:32 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 59E581609C6; Thu, 14 Sep 2017 19:48:32 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id D3A471609CD for ; Thu, 14 Sep 2017 21:48:29 +0200 (CEST) Received: (qmail 4864 invoked by uid 500); 14 Sep 2017 19:48:28 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 4692 invoked by uid 99); 14 Sep 2017 19:48:28 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Sep 2017 19:48:28 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 6F0D03A009A for ; Thu, 14 Sep 2017 19:48:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1808390 [2/3] - in /commons/proper/vfs/trunk: commons-vfs2-sandbox/src/main/java/org/apache/commons/vfs2/provider/smb/ commons-vfs2-sandbox/src/main/java/org/apache/commons/vfs2/util/ commons-vfs2-sandbox/src/test/java/org/apache/commons/v... Date: Thu, 14 Sep 2017 19:48:26 -0000 To: commits@commons.apache.org From: ggregory@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20170914194827.6F0D03A009A@svn01-us-west.apache.org> archived-at: Thu, 14 Sep 2017 19:48:32 -0000 Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractOriginatingFileProvider.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractOriginatingFileProvider.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractOriginatingFileProvider.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractOriginatingFileProvider.java Thu Sep 14 19:48:24 2017 @@ -57,7 +57,7 @@ public abstract class AbstractOriginatin /** * Locates a file from its parsed URI. - * + * * @param name The file name. * @param fileSystemOptions FileSystem options. * @return A FileObject associated with the file. @@ -77,7 +77,7 @@ public abstract class AbstractOriginatin /** * Returns the FileSystem associated with the specified root. - * + * * @param rootName The root path. * @param fileSystemOptions The FileSystem options. * @return The FileSystem. Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractVfsComponent.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractVfsComponent.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractVfsComponent.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractVfsComponent.java Thu Sep 14 19:48:24 2017 @@ -28,7 +28,7 @@ public abstract class AbstractVfsCompone /** * Sets the Logger to use for the component. - * + * * @param log The Log to use. */ @Override @@ -38,7 +38,7 @@ public abstract class AbstractVfsCompone /** * Sets the context for this file system provider. - * + * * @param context The VfsComponentContext. */ @Override @@ -48,7 +48,7 @@ public abstract class AbstractVfsCompone /** * Initializes the component. This implementation does nothing. - * + * * @throws FileSystemException if an error occurs. */ @Override @@ -64,7 +64,7 @@ public abstract class AbstractVfsCompone /** * Returns the logger for this file system to use. - * + * * @return logger for this file system */ protected final Log getLogger() { @@ -73,7 +73,7 @@ public abstract class AbstractVfsCompone /** * Returns the context for this provider. - * + * * @return provider context */ protected final VfsComponentContext getContext() { Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractVfsContainer.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractVfsContainer.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractVfsContainer.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/AbstractVfsContainer.java Thu Sep 14 19:48:24 2017 @@ -34,7 +34,7 @@ public abstract class AbstractVfsContain *

* If the sub-component implements {@link VfsComponent}, it is initialised. All sub-components are closed when this * component is closed. - * + * * @param component the component to add. * @throws FileSystemException if any error occurs. */ Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/CompositeFileProvider.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/CompositeFileProvider.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/CompositeFileProvider.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/CompositeFileProvider.java Thu Sep 14 19:48:24 2017 @@ -32,14 +32,14 @@ public abstract class CompositeFileProvi /** * The schemes known. - * + * * @return Array of supported schemes. */ protected abstract String[] getSchemes(); /** * Locates a file object, by absolute URI. - * + * * @param baseFile The base FileObject. * @param uri The file to find. * @param fileSystemOptions The options for the FileSystem. Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/DefaultFileContent.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/DefaultFileContent.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/DefaultFileContent.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/DefaultFileContent.java Thu Sep 14 19:48:24 2017 @@ -101,7 +101,7 @@ public final class DefaultFileContent im /** * Returns the file that this is the content of. - * + * * @return the FileObject. */ @Override @@ -111,7 +111,7 @@ public final class DefaultFileContent im /** * Returns the size of the content (in bytes). - * + * * @return The size of the content (in bytes). * @throws FileSystemException if an error occurs. */ @@ -136,7 +136,7 @@ public final class DefaultFileContent im /** * Returns the last-modified timestamp. - * + * * @return The last modified timestamp. * @throws FileSystemException if an error occurs. */ @@ -158,7 +158,7 @@ public final class DefaultFileContent im /** * Sets the last-modified timestamp. - * + * * @param modTime The last modified timestamp. * @throws FileSystemException if an error occurs. */ @@ -182,7 +182,7 @@ public final class DefaultFileContent im /** * Checks if an attribute exists. - * + * * @param attrName The name of the attribute to check. * @return true if the attribute is associated with the file. * @throws FileSystemException if an error occurs. @@ -199,7 +199,7 @@ public final class DefaultFileContent im /** * Returns a read-only map of this file's attributes. - * + * * @return a Map of the file's attributes. * @throws FileSystemException if an error occurs. */ @@ -224,7 +224,7 @@ public final class DefaultFileContent im /** * Used internally to flag situations where the file attributes should be reretrieved. - * + * * @since 2.0 */ public void resetAttributes() { @@ -233,7 +233,7 @@ public final class DefaultFileContent im /** * Lists the attributes of this file. - * + * * @return An array of attribute names. * @throws FileSystemException if an error occurs. */ @@ -246,7 +246,7 @@ public final class DefaultFileContent im /** * Gets the value of an attribute. - * + * * @param attrName The attribute name. * @return The value of the attribute or null. * @throws FileSystemException if an error occurs. @@ -259,7 +259,7 @@ public final class DefaultFileContent im /** * Sets the value of an attribute. - * + * * @param attrName The name of the attribute to add. * @param value The value of the attribute. * @throws FileSystemException if an error occurs. @@ -282,7 +282,7 @@ public final class DefaultFileContent im /** * Removes an attribute. - * + * * @param attrName The name of the attribute to remove. * @throws FileSystemException if an error occurs. * @since 2.0 @@ -306,7 +306,7 @@ public final class DefaultFileContent im /** * Returns the certificates used to sign this file. - * + * * @return An array of Certificates. * @throws FileSystemException if an error occurs. */ @@ -333,7 +333,7 @@ public final class DefaultFileContent im /** * Returns an input stream for reading the content. - * + * * @return The InputStream * @throws FileSystemException if an error occurs. */ @@ -357,7 +357,7 @@ public final class DefaultFileContent im /** * Returns an input/output stream to use to read and write the content of the file in an random manner. - * + * * @param mode The RandomAccessMode. * @return A RandomAccessContent object to access the file. * @throws FileSystemException if an error occurs. @@ -382,7 +382,7 @@ public final class DefaultFileContent im /** * Returns an output stream for writing the content. - * + * * @return The OutputStream for the file. * @throws FileSystemException if an error occurs. */ @@ -393,7 +393,7 @@ public final class DefaultFileContent im /** * Returns an output stream for writing the content in append mode. - * + * * @param bAppend true if the data written should be appended. * @return The OutputStream for the file. * @throws FileSystemException if an error occurs. @@ -421,7 +421,7 @@ public final class DefaultFileContent im /** * Closes all resources used by the content, including all streams, readers and writers. - * + * * @throws FileSystemException if an error occurs. */ @Override @@ -660,7 +660,7 @@ public final class DefaultFileContent im /** * get the content info. e.g. content-type, content-encoding - * + * * @return The FileContentInfo. * @throws FileSystemException if an error occurs. */ Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/DefaultURLConnection.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/DefaultURLConnection.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/DefaultURLConnection.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/DefaultURLConnection.java Thu Sep 14 19:48:24 2017 @@ -91,7 +91,7 @@ public final class DefaultURLConnection * public String getHeaderField(String name) { try { if * (content.getFile().getFileSystem().hasCapability(Capability.ATTRIBUTES)) { String value = (String) * content.getAttribute(name); if (value != null) { return value; } } - * + * * return null; } catch (FileSystemException e) { throw new RuntimeException(e); } } */ } Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/DelegateFileObject.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/DelegateFileObject.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/DelegateFileObject.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/DelegateFileObject.java Thu Sep 14 19:48:24 2017 @@ -59,7 +59,7 @@ public class DelegateFileObject * These are the same as on the filesystem, but available before the first filesystem was instanciated. - * + * * @return a Collection of the file systems Capabilities. */ Collection getCapabilities(); /** * Parse the URI into a FileName. - * + * * @param root The base FileName. * @param uri The file to be accessed. * @return A FileName representing the target file. Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/GenericFileName.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/GenericFileName.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/GenericFileName.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/GenericFileName.java Thu Sep 14 19:48:24 2017 @@ -48,7 +48,7 @@ public class GenericFileName extends Abs /** * Returns the user name part of this name. - * + * * @return The user name. */ public String getUserName() { @@ -57,7 +57,7 @@ public class GenericFileName extends Abs /** * Returns the password part of this name. - * + * * @return The password. */ public String getPassword() { @@ -66,7 +66,7 @@ public class GenericFileName extends Abs /** * Returns the host name part of this name. - * + * * @return The host name. */ public String getHostName() { @@ -75,7 +75,7 @@ public class GenericFileName extends Abs /** * Returns the port part of this name. - * + * * @return The port number. */ public int getPort() { @@ -84,7 +84,7 @@ public class GenericFileName extends Abs /** * Returns the default port for this file name. - * + * * @return The default port number. */ public int getDefaultPort() { @@ -93,7 +93,7 @@ public class GenericFileName extends Abs /** * Create a FileName. - * + * * @param absPath The absolute path. * @param type The FileType. * @return The created FileName. Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/HostFileNameParser.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/HostFileNameParser.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/HostFileNameParser.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/HostFileNameParser.java Thu Sep 14 19:48:24 2017 @@ -179,7 +179,7 @@ public class HostFileNameParser extends /** * Extracts the port from a URI. - * + * * @param name string buffer with the "scheme://[userinfo@]hostname" part has been removed already. Will be * modified. * @param uri full URI for error reporting. @@ -222,7 +222,7 @@ public class HostFileNameParser extends /** * Get the connection schema. - * + * * @return the connection scheme. * @since 2.0 */ @@ -232,7 +232,7 @@ public class HostFileNameParser extends /** * Set the connection schema. - * + * * @param scheme the connection scheme. * @since 2.0 */ @@ -242,7 +242,7 @@ public class HostFileNameParser extends /** * Get the host name. - * + * * @return the host name. * @since 2.0 */ @@ -252,7 +252,7 @@ public class HostFileNameParser extends /** * Set the host name. - * + * * @param hostName the host name. * @since 2.0 */ @@ -262,7 +262,7 @@ public class HostFileNameParser extends /** * Get the user name. - * + * * @return the user name or null. * @since 2.0 */ @@ -272,7 +272,7 @@ public class HostFileNameParser extends /** * Set the user name. - * + * * @param userName the user name. * @since 2.0 */ @@ -282,7 +282,7 @@ public class HostFileNameParser extends /** * Get the user password. - * + * * @return the password or null. * @since 2.0 */ @@ -292,7 +292,7 @@ public class HostFileNameParser extends /** * Set the user password. - * + * * @param password the user password. * @since 2.0 */ @@ -302,7 +302,7 @@ public class HostFileNameParser extends /** * Get the port. - * + * * @return the port or -1. * @since 2.0 */ @@ -312,7 +312,7 @@ public class HostFileNameParser extends /** * Set the connection port. - * + * * @param port the port number or -1. * @since 2.0 */ Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/LayeredFileName.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/LayeredFileName.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/LayeredFileName.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/LayeredFileName.java Thu Sep 14 19:48:24 2017 @@ -32,7 +32,7 @@ public class LayeredFileName extends Abs /** * Returns the URI of the outer file. - * + * * @return The FileName. */ public FileName getOuterName() { @@ -41,7 +41,7 @@ public class LayeredFileName extends Abs /** * Create a FileName. - * + * * @param path The file URI. * @param type The FileType. * @return The FileName. Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/LayeredFileNameParser.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/LayeredFileNameParser.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/LayeredFileNameParser.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/LayeredFileNameParser.java Thu Sep 14 19:48:24 2017 @@ -30,7 +30,7 @@ public class LayeredFileNameParser exten /** * Return the Parser. - * + * * @return The Parser. */ public static LayeredFileNameParser getInstance() { @@ -39,7 +39,7 @@ public class LayeredFileNameParser exten /** * Determines if a character should be encoded. - * + * * @param ch The character to check. * @return true if the character should be encoded. */ @@ -50,7 +50,7 @@ public class LayeredFileNameParser exten /** * Parse the base and name into a FileName. - * + * * @param context The component context. * @param base The base FileName. * @param filename The target file name. Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/LocalFileProvider.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/LocalFileProvider.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/LocalFileProvider.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/LocalFileProvider.java Thu Sep 14 19:48:24 2017 @@ -37,7 +37,7 @@ public interface LocalFileProvider exten /** * Finds a local file, from its local name. - * + * * @param name The name of the file to locate. * @return The FileObject for the file. * @throws FileSystemException if an error occurs. @@ -46,7 +46,7 @@ public interface LocalFileProvider exten /** * Converts from java.io.File to FileObject. - * + * * @param file The File for the file. * @return The FileObject for the file. * @throws FileSystemException if an error occurs. Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/URLFileName.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/URLFileName.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/URLFileName.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/URLFileName.java Thu Sep 14 19:48:24 2017 @@ -89,7 +89,7 @@ public class URLFileName extends Generic /** * Create a FileName. - * + * * @param absPath The absolute path. * @param type The FileType. * @return The FileName @@ -121,7 +121,7 @@ public class URLFileName extends Generic /** * Encode a URI. - * + * * @param charset The character set. * @return The encoded URI * @throws FileSystemException if some other exception occurs. Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/UriParser.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/UriParser.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/UriParser.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/UriParser.java Thu Sep 14 19:48:24 2017 @@ -51,7 +51,7 @@ public final class UriParser { /** * Extracts the first element of a path. - * + * * @param name StringBuilder containing the path. * @return The first element of the path. */ @@ -171,7 +171,7 @@ public final class UriParser { /** * Normalises the separators in a name. - * + * * @param name The StringBuilder containing the name * @return true if the StringBuilder was modified. */ @@ -249,7 +249,7 @@ public final class UriParser { /** * Removes %nn encodings from a string. - * + * * @param encodedStr The encoded String. * @return The decoded String. * @throws FileSystemException if an error occurs. @@ -268,7 +268,7 @@ public final class UriParser { /** * Removes %nn encodings from a string. - * + * * @param buffer StringBuilder containing the string to decode. * @param offset The position in the string to start decoding. * @param length The number of characters to decode. @@ -306,7 +306,7 @@ public final class UriParser { /** * Encodes and appends a string to a StringBuilder. - * + * * @param buffer The StringBuilder to append to. * @param unencodedValue The String to encode and append. * @param reserved characters to encode. @@ -319,7 +319,7 @@ public final class UriParser { /** * Encodes a set of reserved characters in a StringBuilder, using the URI %nn encoding. Always encodes % characters. - * + * * @param buffer The StringBuilder to append to. * @param offset The position in the buffer to start encoding at. * @param length The number of characters to encode. @@ -351,7 +351,7 @@ public final class UriParser { /** * Removes %nn encodings from a string. - * + * * @param decodedStr The decoded String. * @return The encoded String. */ @@ -361,7 +361,7 @@ public final class UriParser { /** * Converts "special" characters to their %nn value. - * + * * @param decodedStr The decoded String. * @param reserved Characters to encode. * @return The encoded String @@ -377,7 +377,7 @@ public final class UriParser { /** * Encode an array of Strings. - * + * * @param strings The array of Strings to encode. * @return An array of encoded Strings. */ @@ -393,7 +393,7 @@ public final class UriParser { /** * Decodes the String. - * + * * @param uri The String to decode. * @throws FileSystemException if an error occurs. */ @@ -448,7 +448,7 @@ public final class UriParser { /** * Extract the query String from the URI. - * + * * @param name StringBuilder containing the URI. * @return The query string, if any. null otherwise. */ Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/VfsComponent.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/VfsComponent.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/VfsComponent.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/VfsComponent.java Thu Sep 14 19:48:24 2017 @@ -46,7 +46,7 @@ public interface VfsComponent { /** * Initializes the component. - * + * * @throws FileSystemException if an error occurs. */ void init() throws FileSystemException; Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/VfsComponentContext.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/VfsComponentContext.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/VfsComponentContext.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/VfsComponentContext.java Thu Sep 14 19:48:24 2017 @@ -34,7 +34,7 @@ public interface VfsComponentContext { /** * Locate a file by name. See {@link FileSystemManager#resolveFile(FileObject, String)} for a description of how * this works. - * + * * @param baseFile The base FileObject. * @param name The name of the file to locate. * @param fileSystemOptions The FileSystemOptions. @@ -46,7 +46,7 @@ public interface VfsComponentContext { /** * Locate a file by name. See {@link FileSystemManager#resolveFile( String)} for a description of how this works. - * + * * @param name The name of the file to locate. * @param fileSystemOptions The FileSystemOptions. * @return The FileObject for the located file. @@ -56,7 +56,7 @@ public interface VfsComponentContext { /** * Parse a URI into a FileName. - * + * * @param uri The URI String. * @return The FileName. * @throws FileSystemException if an error occurs. @@ -65,7 +65,7 @@ public interface VfsComponentContext { /** * Locates a file replicator for the provider to use. - * + * * @return The FileReplicator. * @throws FileSystemException if an error occurs. */ @@ -73,7 +73,7 @@ public interface VfsComponentContext { /** * Locates a temporary file store for the provider to use. - * + * * @return The TemporaryFileStore. * @throws FileSystemException if an error occurs. */ @@ -81,7 +81,7 @@ public interface VfsComponentContext { /** * Returns a {@link FileObject} for a local file. - * + * * @param file The File to convert to a FileObject. * @return the FileObject. * @throws FileSystemException if an error occurs. Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/bzip2/Bzip2FileObject.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/bzip2/Bzip2FileObject.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/bzip2/Bzip2FileObject.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/bzip2/Bzip2FileObject.java Thu Sep 14 19:48:24 2017 @@ -33,7 +33,7 @@ import org.apache.commons.vfs2.provider. public class Bzip2FileObject extends CompressedFileFileObject { /** * Deprecated since 2.1. - * + * * @deprecated Use {@link #Bzip2FileObject(AbstractFileName, FileObject, Bzip2FileSystem)} instead. */ @Deprecated Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ftp/FtpFileSystem.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ftp/FtpFileSystem.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ftp/FtpFileSystem.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ftp/FtpFileSystem.java Thu Sep 14 19:48:24 2017 @@ -79,7 +79,7 @@ public class FtpFileSystem extends Abstr /** * Cleans up the connection to the server. - * + * * @param client The FtpClient. */ private void closeConnection(final FtpClient client) { @@ -96,7 +96,7 @@ public class FtpFileSystem extends Abstr /** * Creates an FTP client to use. - * + * * @return An FTPCleint. * @throws FileSystemException if an error occurs. */ @@ -112,7 +112,7 @@ public class FtpFileSystem extends Abstr /** * Get the wrapper to access this file system. - * + * * @return new instance. * @throws FileSystemException if any error occurs. * @since 2.1 @@ -123,7 +123,7 @@ public class FtpFileSystem extends Abstr /** * Returns an FTP client after use. - * + * * @param client The FTPClient. */ public void putClient(final FtpClient client) { Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ftp/FtpFileSystemConfigBuilder.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ftp/FtpFileSystemConfigBuilder.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ftp/FtpFileSystemConfigBuilder.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ftp/FtpFileSystemConfigBuilder.java Thu Sep 14 19:48:24 2017 @@ -53,7 +53,7 @@ public class FtpFileSystemConfigBuilder /** * Create new config builder with specified prefix string. - * + * * @param prefix prefix string to use for parameters of this config builder. * @since 2.1 */ Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ftps/FtpsClientFactory.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ftps/FtpsClientFactory.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ftps/FtpsClientFactory.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ftps/FtpsClientFactory.java Thu Sep 14 19:48:24 2017 @@ -38,7 +38,7 @@ public final class FtpsClientFactory { /** * Creates a new connection to the server. - * + * * @param hostname The host name. * @param port The port. * @param username The user name for authentication. Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/gzip/GzipFileObject.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/gzip/GzipFileObject.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/gzip/GzipFileObject.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/gzip/GzipFileObject.java Thu Sep 14 19:48:24 2017 @@ -32,7 +32,7 @@ import org.apache.commons.vfs2.provider. public class GzipFileObject extends CompressedFileFileObject { /** * Deprecated since 2.1. - * + * * @deprecated Use {@link #GzipFileObject(AbstractFileName, FileObject, GzipFileSystem)} instead. */ @Deprecated Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/hdfs/HdfsFileProvider.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/hdfs/HdfsFileProvider.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/hdfs/HdfsFileProvider.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/hdfs/HdfsFileProvider.java Thu Sep 14 19:48:24 2017 @@ -50,7 +50,7 @@ public class HdfsFileProvider extends Ab /** * Create a new HdfsFileSystem instance. - * + * * @param rootName Name of the root file. * @param fileSystemOptions Configuration options for this instance. * @throws FileSystemException if error occurred. @@ -63,7 +63,7 @@ public class HdfsFileProvider extends Ab /** * Get Capabilities of HdfsFileSystem. - * + * * @return The capabilities (unmodifiable). */ @Override @@ -73,7 +73,7 @@ public class HdfsFileProvider extends Ab /** * Return config builder. - * + * * @return A config builder for HdfsFileSystems. * @see org.apache.commons.vfs2.provider.AbstractFileProvider#getConfigBuilder() */ Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/hdfs/HdfsFileSystem.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/hdfs/HdfsFileSystem.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/hdfs/HdfsFileSystem.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/hdfs/HdfsFileSystem.java Thu Sep 14 19:48:24 2017 @@ -90,7 +90,7 @@ public class HdfsFileSystem extends Abst /** * Resolve FileName into FileObject. - * + * * @param name The name of a file on the HdfsFileSystem. * @return resolved FileObject. * @throws FileSystemException if an error occurred. Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/http/HttpClientFactory.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/http/HttpClientFactory.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/http/HttpClientFactory.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/http/HttpClientFactory.java Thu Sep 14 19:48:24 2017 @@ -47,7 +47,7 @@ public final class HttpClientFactory { /** * Creates a new connection to the server. - * + * * @param builder The HttpFileSystemConfigBuilder. * @param scheme The protocol. * @param hostname The hostname. Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/http/HttpFileObject.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/http/HttpFileObject.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/http/HttpFileObject.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/http/HttpFileObject.java Thu Sep 14 19:48:24 2017 @@ -231,11 +231,11 @@ public class HttpFileObject 0) { map.put("content-type", * element[0].getName()); } } - * + * * map.put("content-encoding", method.getResponseCharSet()); return map; } */ } Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/http/HttpFileSystemConfigBuilder.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/http/HttpFileSystemConfigBuilder.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/http/HttpFileSystemConfigBuilder.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/http/HttpFileSystemConfigBuilder.java Thu Sep 14 19:48:24 2017 @@ -50,7 +50,7 @@ public class HttpFileSystemConfigBuilder /** * Create new config builder. - * + * * @param prefix String for properties of this file system. * @since 2.0 */ @@ -141,7 +141,7 @@ public class HttpFileSystemConfigBuilder /** * Set the proxy authenticator where the system should get the credentials from. - * + * * @param opts The FileSystem options. * @param authenticator The UserAuthenticator. */ @@ -151,7 +151,7 @@ public class HttpFileSystemConfigBuilder /** * Get the proxy authenticator where the system should get the credentials from. - * + * * @param opts The FileSystem options. * @return The UserAuthenticator. */ @@ -161,7 +161,7 @@ public class HttpFileSystemConfigBuilder /** * The cookies to add to the request. - * + * * @param opts The FileSystem options. * @param cookies An array of Cookies. */ @@ -183,7 +183,7 @@ public class HttpFileSystemConfigBuilder /** * The cookies to add to the request. - * + * * @param opts The FileSystem options. * @return the Cookie array. */ @@ -205,7 +205,7 @@ public class HttpFileSystemConfigBuilder /** * The maximum number of connections allowed. - * + * * @param opts The FileSystem options. * @param maxTotalConnections The maximum number of connections. * @since 2.0 @@ -216,7 +216,7 @@ public class HttpFileSystemConfigBuilder /** * Retrieve the maximum number of connections allowed. - * + * * @param opts The FileSystemOptions. * @return The maximum number of connections allowed. * @since 2.0 @@ -227,7 +227,7 @@ public class HttpFileSystemConfigBuilder /** * The maximum number of connections allowed to any host. - * + * * @param opts The FileSystem options. * @param maxHostConnections The maximum number of connections to a host. * @since 2.0 @@ -238,7 +238,7 @@ public class HttpFileSystemConfigBuilder /** * Retrieve the maximum number of connections allowed per host. - * + * * @param opts The FileSystemOptions. * @return The maximum number of connections allowed per host. * @since 2.0 @@ -249,7 +249,7 @@ public class HttpFileSystemConfigBuilder /** * Determines if the FileSystemOptions indicate that preemptive authentication is requested. - * + * * @param opts The FileSystemOptions. * @return true if preemptiveAuth is requested. * @since 2.0 @@ -262,7 +262,7 @@ public class HttpFileSystemConfigBuilder * Sets the given value for preemptive HTTP authentication (using BASIC) on the given FileSystemOptions object. * Defaults to false if not set. It may be appropriate to set to true in cases when the resulting chattiness of the * conversation outweighs any architectural desire to use a stronger authentication scheme than basic/preemptive. - * + * * @param opts The FileSystemOptions. * @param preemptiveAuth the desired setting; true=enabled and false=disabled. */ Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/jar/JarFileSystem.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/jar/JarFileSystem.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/jar/JarFileSystem.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/jar/JarFileSystem.java Thu Sep 14 19:48:24 2017 @@ -143,7 +143,7 @@ public class JarFileSystem extends ZipFi /** * Retrives the attribute with the specified name. The default implementation simply throws an exception. - * + * * @param attrName The attiribute's name. * @return The value of the attribute. * @throws FileSystemException if an error occurs. Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/DefaultLocalFileProvider.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/DefaultLocalFileProvider.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/DefaultLocalFileProvider.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/DefaultLocalFileProvider.java Thu Sep 14 19:48:24 2017 @@ -59,7 +59,7 @@ public class DefaultLocalFileProvider ex /** * Determines if a name is an absolute file name. - * + * * @param name The file name. * @return true if the name is absolute, false otherwise. */ @@ -70,7 +70,7 @@ public class DefaultLocalFileProvider ex /** * Finds a local file, from its local name. - * + * * @param name The name of the file to locate. * @return the located FileObject. * @throws FileSystemException if an error occurs. @@ -87,7 +87,7 @@ public class DefaultLocalFileProvider ex /** * Finds a local file. - * + * * @param file The File to locate. * @return the located FileObject. * @throws FileSystemException if an error occurs. Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/LocalFile.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/LocalFile.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/LocalFile.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/LocalFile.java Thu Sep 14 19:48:24 2017 @@ -199,7 +199,7 @@ public class LocalFile extends AbstractF /** * Sets the last modified time of this file. - * + * * @since 2.0 */ @Override @@ -256,7 +256,7 @@ public class LocalFile extends AbstractF /** * Returns the URI of the file. - * + * * @return The URI of the file. */ @Override Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/LocalFileName.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/LocalFileName.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/LocalFileName.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/LocalFileName.java Thu Sep 14 19:48:24 2017 @@ -49,7 +49,7 @@ public class LocalFileName extends Abstr /** * Returns the root file for this file. - * + * * @return The root file name. */ public String getRootFile() { @@ -58,7 +58,7 @@ public class LocalFileName extends Abstr /** * Factory method for creating name instances. - * + * * @param path The file path. * @param type The file type. * @return The FileName. @@ -70,7 +70,7 @@ public class LocalFileName extends Abstr /** * Returns the absolute URI of the file. - * + * * @return The absolute URI of the file. */ @Override @@ -94,7 +94,7 @@ public class LocalFileName extends Abstr /** * returns a "friendly path", this is a path without a password. - * + * * @return The "friendly" URI. */ @Override @@ -118,7 +118,7 @@ public class LocalFileName extends Abstr /** * Returns the decoded URI of the file. - * + * * @return the FileName as a URI. */ @Override Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/LocalFileNameParser.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/LocalFileNameParser.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/LocalFileNameParser.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/LocalFileNameParser.java Thu Sep 14 19:48:24 2017 @@ -29,7 +29,7 @@ import org.apache.commons.vfs2.provider. public abstract class LocalFileNameParser extends AbstractFileNameParser { /** * Determines if a name is an absolute file name. - * + * * @param name The file name. * @return true if the name is absolute, false otherwise. */ Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/WindowsFileName.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/WindowsFileName.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/WindowsFileName.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/local/WindowsFileName.java Thu Sep 14 19:48:24 2017 @@ -29,7 +29,7 @@ public class WindowsFileName extends Loc /** * Factory method for creating name instances. - * + * * @param path The file path. * @param type The file type. * @return The FileName. Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ram/RamFileData.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ram/RamFileData.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ram/RamFileData.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ram/RamFileData.java Thu Sep 14 19:48:24 2017 @@ -63,7 +63,7 @@ class RamFileData implements Serializabl /** * Constructor. - * + * * @param name The file name. */ public RamFileData(final FileName name) { Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ram/RamFileRandomAccessContent.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ram/RamFileRandomAccessContent.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ram/RamFileRandomAccessContent.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/ram/RamFileRandomAccessContent.java Thu Sep 14 19:48:24 2017 @@ -413,7 +413,7 @@ public class RamFileRandomAccessContent /** * Build a short from first 2 bytes of the array. - * + * * @param b The byte[] to convert. * @return A short. */ Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/res/ResourceFileProvider.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/res/ResourceFileProvider.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/res/ResourceFileProvider.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/res/ResourceFileProvider.java Thu Sep 14 19:48:24 2017 @@ -46,7 +46,7 @@ public class ResourceFileProvider extend /** * Locates a file object, by absolute URI. - * + * * @param baseFile The base file. * @param uri The URI of the file to locate. * @param fileSystemOptions The FileSystem options. Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/sftp/SftpFileProvider.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/sftp/SftpFileProvider.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/sftp/SftpFileProvider.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/sftp/SftpFileProvider.java Thu Sep 14 19:48:24 2017 @@ -102,7 +102,7 @@ public class SftpFileProvider extends Ab /** * Initializes the component. - * + * * @throws FileSystemException if an error occurs. */ @Override Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/tar/TarFileObject.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/tar/TarFileObject.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/tar/TarFileObject.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/tar/TarFileObject.java Thu Sep 14 19:48:24 2017 @@ -46,7 +46,7 @@ public class TarFileObject extends Abstr /** * Sets the details for this file object. - * + * * Consider this method package private. TODO Might be made package private in the next major version. */ protected void setTarEntry(final TarArchiveEntry entry) { @@ -65,7 +65,7 @@ public class TarFileObject extends Abstr /** * Attaches a child. - * + * * @param childName Name of child to remember. */ protected void attachChild(final FileName childName) { Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/temp/TemporaryFileProvider.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/temp/TemporaryFileProvider.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/temp/TemporaryFileProvider.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/temp/TemporaryFileProvider.java Thu Sep 14 19:48:24 2017 @@ -39,7 +39,7 @@ public class TemporaryFileProvider exten /* * private final static FileName tmpFileName = new AbstractFileName("tmp", "/") { protected FileName * createName(String absPath) { return null; } - * + * * protected void appendRootUri(StringBuffer buffer) { } }; */ @@ -69,7 +69,7 @@ public class TemporaryFileProvider exten /** * Locates a file object, by absolute URI. - * + * * @param baseFile The base FileObject. * @param uri The URI of the file to be located. * @param properties FileSystemOptions to use to locate or create the file. Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/url/UrlFileName.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/url/UrlFileName.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/url/UrlFileName.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/url/UrlFileName.java Thu Sep 14 19:48:24 2017 @@ -25,7 +25,7 @@ import org.apache.commons.vfs2.provider. public class UrlFileName extends URLFileName { /** * The constructor. - * + * * @param scheme The scheme to use. * @param hostName The host name. * @param port The port. Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/url/UrlFileNameParser.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/url/UrlFileNameParser.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/url/UrlFileNameParser.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/url/UrlFileNameParser.java Thu Sep 14 19:48:24 2017 @@ -44,7 +44,7 @@ public class UrlFileNameParser extends A /** * Parse a URI. - * + * * @param context The component context. * @param base The base FileName. * @param uri The target file name. @@ -68,7 +68,7 @@ public class UrlFileNameParser extends A *

* A file name is URL-based if the base is a {@code URLFileName} or there are only 2 slashes after the scheme. e.g: * {@code http://host/path}, {@code file:/path/to/file}, {@code file:///path/to/file}. - * + * * @param base The filename is relative to this base. * @param filename The filename. * @return true if filename contains two slashes or base was URLFileName. Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/url/UrlFileProvider.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/url/UrlFileProvider.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/url/UrlFileProvider.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/url/UrlFileProvider.java Thu Sep 14 19:48:24 2017 @@ -46,7 +46,7 @@ public class UrlFileProvider extends Abs /** * Locates a file object, by absolute URI. - * + * * @param baseFile The base FileObject. * @param uri The uri of the file to locate. * @param fileSystemOptions The FileSystemOptions Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/webdav/ExceptionConverter.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/webdav/ExceptionConverter.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/webdav/ExceptionConverter.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/webdav/ExceptionConverter.java Thu Sep 14 19:48:24 2017 @@ -27,7 +27,7 @@ import org.w3c.dom.Element; /** * {@code ExceptionConverter} converts WebDAV exceptions into FileSystemExceptions. - * + * * @since 2.0 */ public final class ExceptionConverter { Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/webdav/WebdavFileNameParser.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/webdav/WebdavFileNameParser.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/webdav/WebdavFileNameParser.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/webdav/WebdavFileNameParser.java Thu Sep 14 19:48:24 2017 @@ -21,7 +21,7 @@ import org.apache.commons.vfs2.provider. /** * Implementation for http. set default port to 80 - * + * * @since 2.0 */ public class WebdavFileNameParser extends HttpFileNameParser { Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/webdav/WebdavFileProvider.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/webdav/WebdavFileProvider.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/webdav/WebdavFileProvider.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/webdav/WebdavFileProvider.java Thu Sep 14 19:48:24 2017 @@ -42,7 +42,7 @@ public class WebdavFileProvider extends /** * The authenticator types used by the WebDAV provider. - * + * * @deprecated Might be removed in the next major version. */ @Deprecated @@ -69,7 +69,7 @@ public class WebdavFileProvider extends * credentials configuration through to this method so it's used for resolving a * {@link org.apache.commons.vfs2.FileObject FileObject} in the FileSystem, then be sure to use correct signature of * the {@link org.apache.commons.vfs2.FileSystemManager FileSystemManager} resolveFile method. - * + * * @see org.apache.commons.vfs2.impl.DefaultFileSystemManager#resolveFile(FileObject, String, FileSystemOptions) */ @Override Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/webdav/WebdavFileSystem.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/webdav/WebdavFileSystem.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/webdav/WebdavFileSystem.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/webdav/WebdavFileSystem.java Thu Sep 14 19:48:24 2017 @@ -47,7 +47,7 @@ public class WebdavFileSystem extends Ht /** * Returns the capabilities of this file system. - * + * * @param caps The Capabilities to add. */ @Override @@ -57,7 +57,7 @@ public class WebdavFileSystem extends Ht /** * Creates a file object. This method is called only if the requested file is not cached. - * + * * @param name the FileName. * @return The created FileObject. */ @@ -69,7 +69,7 @@ public class WebdavFileSystem extends Ht /** * Return a URLStreamHandler. - * + * * @return The URLStreamHandler. */ public URLStreamHandler getURLStreamHandler() { Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/webdav/WebdavFileSystemConfigBuilder.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/webdav/WebdavFileSystemConfigBuilder.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/webdav/WebdavFileSystemConfigBuilder.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/webdav/WebdavFileSystemConfigBuilder.java Thu Sep 14 19:48:24 2017 @@ -45,7 +45,7 @@ public final class WebdavFileSystemConfi /** * The user name to be associated with changes to the file. - * + * * @param opts The FileSystem options * @param creatorName The creator name to be associated with the file. */ @@ -55,7 +55,7 @@ public final class WebdavFileSystemConfi /** * Return the user name to be associated with changes to the file. - * + * * @param opts The FileSystem options * @return The creatorName. */ @@ -78,7 +78,7 @@ public final class WebdavFileSystemConfi /** * Whether to use versioning. - * + * * @param opts The FileSystem options. * @param versioning true if versioning should be enabled. */ @@ -88,7 +88,7 @@ public final class WebdavFileSystemConfi /** * The cookies to add to the request. - * + * * @param opts The FileSystem options. * @return true if versioning is enabled. */ Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/zip/ZipFileObject.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/zip/ZipFileObject.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/zip/ZipFileObject.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/provider/zip/ZipFileObject.java Thu Sep 14 19:48:24 2017 @@ -46,7 +46,7 @@ public class ZipFileObject extends Abstr /** * Sets the details for this file object. - * + * * @param entry ZIP information related to this file. */ protected void setZipEntry(final ZipEntry entry) { @@ -69,7 +69,7 @@ public class ZipFileObject extends Abstr * TODO: Shouldn't this method have package-only visibility? Cannot change this without breaking binary * compatibility. *

- * + * * @param childName The name of the child. */ public void attachChild(final FileName childName) { Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/tasks/AbstractSyncTask.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/tasks/AbstractSyncTask.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/tasks/AbstractSyncTask.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/tasks/AbstractSyncTask.java Thu Sep 14 19:48:24 2017 @@ -58,7 +58,7 @@ public abstract class AbstractSyncTask e /** * Sets the destination file. - * + * * @param destFile The destination file name. */ public void setDestFile(final String destFile) { @@ -67,7 +67,7 @@ public abstract class AbstractSyncTask e /** * Sets the destination directory. - * + * * @param destDir The destination directory. */ public void setDestDir(final String destDir) { @@ -76,7 +76,7 @@ public abstract class AbstractSyncTask e /** * Sets the source file. - * + * * @param srcFile The source file name. */ public void setSrc(final String srcFile) { @@ -87,7 +87,7 @@ public abstract class AbstractSyncTask e /** * Sets the source directory. - * + * * @param srcDir The source directory. */ public void setSrcDir(final String srcDir) { @@ -96,7 +96,7 @@ public abstract class AbstractSyncTask e /** * Sets whether the source directory should be consider as the base directory. - * + * * @param srcDirIsBase true if the source directory is the base directory. */ public void setSrcDirIsBase(final boolean srcDirIsBase) { @@ -105,7 +105,7 @@ public abstract class AbstractSyncTask e /** * Sets whether we should fail if there was an error or not. - * + * * @param failonerror true if the operation should fail if there is an error. */ public void setFailonerror(final boolean failonerror) { @@ -114,7 +114,7 @@ public abstract class AbstractSyncTask e /** * Sets whether we should fail if there was an error or not. - * + * * @return true if the operation should fail if there was an error. */ public boolean isFailonerror() { @@ -123,7 +123,7 @@ public abstract class AbstractSyncTask e /** * Sets the files to includes. - * + * * @param filesList The list of files to include. */ public void setIncludes(final String filesList) { @@ -132,7 +132,7 @@ public abstract class AbstractSyncTask e /** * Adds a nested <src> element. - * + * * @param srcInfo A nested source element. * @throws BuildException if the SourceInfo doesn't reference a file. */ @@ -146,7 +146,7 @@ public abstract class AbstractSyncTask e /** * Executes this task. - * + * * @throws BuildException if an error occurs. */ @Override Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/tasks/CopyTask.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/tasks/CopyTask.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/tasks/CopyTask.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/tasks/CopyTask.java Thu Sep 14 19:48:24 2017 @@ -32,7 +32,7 @@ public class CopyTask extends AbstractSy /** * Enable/disable overwriting of up-to-date files. - * + * * @param overwrite true if the file should be overwritten. */ public void setOverwrite(final boolean overwrite) { @@ -41,7 +41,7 @@ public class CopyTask extends AbstractSy /** * Enable/disable preserving last modified time of copied files. - * + * * @param preserveLastModified true if the last modified time should be preserved. */ public void setPreserveLastModified(final boolean preserveLastModified) { @@ -64,7 +64,7 @@ public class CopyTask extends AbstractSy /** * Handles an out-of-date file. - * + * * @param srcFile The source FileObject. * @param destFile The destination FileObject. */ @@ -81,7 +81,7 @@ public class CopyTask extends AbstractSy /** * Handles an up-to-date file. - * + * * @param srcFile The source FileObject. * @param destFile The destination FileObject. */ Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/tasks/DeleteTask.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/tasks/DeleteTask.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/tasks/DeleteTask.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/tasks/DeleteTask.java Thu Sep 14 19:48:24 2017 @@ -43,7 +43,7 @@ public class DeleteTask extends VfsTask /** * Sets the source directory. - * + * * @param srcDir The source directory. */ public void setSrcDir(final String srcDir) { @@ -52,7 +52,7 @@ public class DeleteTask extends VfsTask /** * Sets the files to include. - * + * * @param filesList The list of files. */ public void setIncludes(final String filesList) { @@ -61,7 +61,7 @@ public class DeleteTask extends VfsTask /** * Executes this task. - * + * * @throws BuildException if an error occurs. */ @Override Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/tasks/MkdirTask.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/tasks/MkdirTask.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/tasks/MkdirTask.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/tasks/MkdirTask.java Thu Sep 14 19:48:24 2017 @@ -38,7 +38,7 @@ public class MkdirTask extends VfsTask { /** * Executes the task. - * + * * @throws BuildException if an exception occurs. */ @Override Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/tasks/MoveTask.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/tasks/MoveTask.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/tasks/MoveTask.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/tasks/MoveTask.java Thu Sep 14 19:48:24 2017 @@ -31,7 +31,7 @@ public class MoveTask extends CopyTask { /** * Enable/disable move/rename of file (if possible). - * + * * @param tryRename true if the file should be renamed. */ public void setTryRename(final boolean tryRename) { Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/tasks/ShowFileTask.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/tasks/ShowFileTask.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/tasks/ShowFileTask.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/tasks/ShowFileTask.java Thu Sep 14 19:48:24 2017 @@ -36,7 +36,7 @@ public class ShowFileTask extends VfsTas /** * The URL of the file to display. - * + * * @param url The url of the file. */ public void setFile(final String url) { @@ -45,7 +45,7 @@ public class ShowFileTask extends VfsTas /** * Shows the content. Assumes the content is text, encoded using the platform's default encoding. - * + * * @param showContent true if the content should be shown. */ public void setShowContent(final boolean showContent) { @@ -54,7 +54,7 @@ public class ShowFileTask extends VfsTas /** * Recursively shows the descendants of the file. - * + * * @param recursive true if descendants should be shown. */ public void setRecursive(final boolean recursive) { @@ -63,7 +63,7 @@ public class ShowFileTask extends VfsTas /** * Executes the task. - * + * * @throws BuildException if any exception is thrown. */ @Override Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/Cryptor.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/Cryptor.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/Cryptor.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/Cryptor.java Thu Sep 14 19:48:24 2017 @@ -22,7 +22,7 @@ package org.apache.commons.vfs2.util; public interface Cryptor { /** * Encrypt the plain text password. - * + * * @param plainKey The password. * @return The encrypted password String. * @throws Exception If an error occurs. @@ -31,7 +31,7 @@ public interface Cryptor { /** * Decrypts the password. - * + * * @param encryptedKey the encrypted password. * @return The plain text password. * @throws Exception If an error occurs. Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/CryptorFactory.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/CryptorFactory.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/CryptorFactory.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/CryptorFactory.java Thu Sep 14 19:48:24 2017 @@ -18,7 +18,7 @@ package org.apache.commons.vfs2.util; /** * Factory to create an instance of a Cryptor. - * + * * @since 2.0 */ public final class CryptorFactory { @@ -38,7 +38,7 @@ public final class CryptorFactory { /** * Allows the Cryptor class to be set programmatically. - * + * * @param cryptor The Cryptor. */ public static synchronized void setCryptor(final Cryptor cryptor) { @@ -48,7 +48,7 @@ public final class CryptorFactory { /** * Return the Cryptor. If one has not been previously set, create it. The Cryptor class can be set by setting the * "org.apache.commons.vfs2.cryptor" System property to the name of the Cryptor class. - * + * * @return The Cryptor. */ public static synchronized Cryptor getCryptor() { Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/DefaultCryptor.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/DefaultCryptor.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/DefaultCryptor.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/DefaultCryptor.java Thu Sep 14 19:48:24 2017 @@ -68,7 +68,7 @@ public class DefaultCryptor implements C /** * Decrypts the password. - * + * * @param encryptedKey the encrypted password. * @return The plain text password. * @throws Exception If an error occurs. Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/DelegatingFileSystemOptionsBuilder.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/DelegatingFileSystemOptionsBuilder.java?rev=1808390&r1=1808389&r2=1808390&view=diff ============================================================================== --- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/DelegatingFileSystemOptionsBuilder.java (original) +++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/DelegatingFileSystemOptionsBuilder.java Thu Sep 14 19:48:24 2017 @@ -38,7 +38,7 @@ import org.apache.commons.vfs2.FileSyste * This class use reflection to set a configuration value using the fileSystemConfigBuilder associated the a scheme.
*
* Example:
- * + * *
  * FileSystemOptions fso = new FileSystemOptions();
  * DelegatingFileSystemOptionsBuilder delegate = new DelegatingFileSystemOptionsBuilder(VFS.getManager());

Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/EncryptUtil.java
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/EncryptUtil.java?rev=1808390&r1=1808389&r2=1808390&view=diff
==============================================================================
--- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/EncryptUtil.java (original)
+++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/EncryptUtil.java Thu Sep 14 19:48:24 2017
@@ -18,7 +18,7 @@ package org.apache.commons.vfs2.util;
 
 /**
  * Allows passwords to be encrypted and decrypted.
- * 
+ *
  * @since 2.0
  */
 public final class EncryptUtil {

Modified: commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/FileObjectUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/FileObjectUtils.java?rev=1808390&r1=1808389&r2=1808390&view=diff
==============================================================================
--- commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/FileObjectUtils.java (original)
+++ commons/proper/vfs/trunk/commons-vfs2/src/main/java/org/apache/commons/vfs2/util/FileObjectUtils.java Thu Sep 14 19:48:24 2017
@@ -30,7 +30,7 @@ public final class FileObjectUtils {
 
     /**
      * Get access to the base object even if decorated.
-     * 
+     *
      * @param fileObject The FileObject.
      * @return The decorated FileObject or null.
      * @throws FileSystemException if an error occurs.
@@ -53,7 +53,7 @@ public final class FileObjectUtils {
 
     /**
      * Check if the given FileObject is instance of given class argument.
-     * 
+     *
      * @param fileObject The FileObject.
      * @param wantedClass The Class to check.
      * @return true if fileObject is an instance of the specified Class.