JavaDoc fixes

git-svn-id: https://svn.apache.org/repos/asf/jakarta/httpcomponents/httpclient/trunk@509265 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Roland Weber 2007-02-19 17:31:57 +00:00
parent 01f87fd845
commit 9a201ac17b
2 changed files with 7 additions and 7 deletions

View File

@ -57,8 +57,8 @@ public final class SchemeRegistry {
/** /**
* A default scheme registry. * A default scheme registry.
* It is empty by default, but can be initialized by any application. * It is empty by default, but can be initialized by any application.
* The default scheme set should only be used by applications that * The default scheme registry should only be used by applications that
* know for sure that this class is NOT shared with any other applications. * know for sure that this class is NOT shared with any other application.
* For example a Servlet, Portlet or EJB should not rely on being the * For example a Servlet, Portlet or EJB should not rely on being the
* only user of this class. * only user of this class.
*/ */

View File

@ -66,23 +66,23 @@ public class DefaultClientConnectionOperator
implements ClientConnectionOperator { implements ClientConnectionOperator {
/** The scheme set for looking up socket factories. */ /** The scheme registry for looking up socket factories. */
protected SchemeRegistry schemeRegistry; protected SchemeRegistry schemeRegistry;
/** /**
* Creates a new client connection operator. * Creates a new client connection operator.
* Uses {@link SchemeRegistry#DEFAULT SchemeRegistry.DEFAULT} * Uses {@link SchemeRegistry#DEFAULT SchemeRegistry.DEFAULT}
* as the scheme set. * as the scheme registry.
*/ */
public DefaultClientConnectionOperator() { public DefaultClientConnectionOperator() {
this(null); this(null);
} }
/** /**
* Creates a new client connection operator for the given scheme set. * Creates a new client connection operator for the given scheme registry.
* *
* @param schemes the scheme set, or <code>null</code> to use * @param schemes the scheme registry, or <code>null</code> to use
* {@link SchemeRegistry#DEFAULT SchemeRegistry.DEFAULT} * {@link SchemeRegistry#DEFAULT SchemeRegistry.DEFAULT}
*/ */
public DefaultClientConnectionOperator(SchemeRegistry schemes) { public DefaultClientConnectionOperator(SchemeRegistry schemes) {
@ -227,5 +227,5 @@ public class DefaultClientConnectionOperator
} // prepareSocket } // prepareSocket
} // interface ClientConnectionOperator } // class DefaultClientConnectionOperator