Fixing Javadoc errors that JDK 1.7 complains about
This commit is contained in:
parent
6572dfae27
commit
ffad720991
|
@ -42,9 +42,9 @@
|
|||
* {@link org.eclipse.jetty.client.api.HttpClient} level.
|
||||
* <p />
|
||||
* Applications may decide to send the request and wait for the response in a blocking way, using
|
||||
* {@link Request#send()}.
|
||||
* {@link org.eclipse.jetty.client.api.Request#send()}.
|
||||
* Alternatively, application may ask to be notified of response events asynchronously, using
|
||||
* {@link Request#send(Response.Listener)}.
|
||||
* {@link org.eclipse.jetty.client.api.Request#send(Response.Listener)}.
|
||||
*/
|
||||
package org.eclipse.jetty.client;
|
||||
|
||||
|
|
|
@ -56,10 +56,10 @@ public interface Handler extends LifeCycle, Destroyable
|
|||
* @param target The target of the request - either a URI or a name.
|
||||
* @param baseRequest The original unwrapped request object.
|
||||
* @param request The request either as the {@link Request}
|
||||
* object or a wrapper of that request. The {@link AbstractHttpConnection#getCurrentHttpChannel()}
|
||||
* object or a wrapper of that request. The {@link HttpChannel#getCurrentHttpChannel()}
|
||||
* method can be used access the Request object if required.
|
||||
* @param response The response as the {@link Response}
|
||||
* object or a wrapper of that request. The {@link AbstractHttpConnection#getCurrentHttpChannel()}
|
||||
* object or a wrapper of that request. The {@link HttpChannel#getCurrentHttpChannel()}
|
||||
* method can be used access the Response object if required.
|
||||
* @throws IOException
|
||||
* @throws ServletException
|
||||
|
|
|
@ -31,7 +31,6 @@ import java.util.EventListener;
|
|||
import java.util.HashMap;
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
||||
import java.util.ListIterator;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
|
||||
|
@ -658,7 +657,7 @@ public class WebAppContext extends ServletContextHandler implements WebAppClassL
|
|||
/* ------------------------------------------------------------ */
|
||||
/** Add to the list of Server classes.
|
||||
* @see #setServerClasses(String[])
|
||||
* @see http://www.eclipse.org/jetty/documentation/current/jetty-classloading.html
|
||||
* @see <a href="Jetty Documentation: Classloading">http://www.eclipse.org/jetty/documentation/current/jetty-classloading.html</a>
|
||||
* @param classOrPackage A fully qualified class name (eg com.foo.MyClass)
|
||||
* or a qualified package name ending with '.' (eg com.foo.). If the class
|
||||
* or package has '-' it is excluded from the server classes and order is thus
|
||||
|
@ -676,7 +675,7 @@ public class WebAppContext extends ServletContextHandler implements WebAppClassL
|
|||
/* ------------------------------------------------------------ */
|
||||
/** Prepend to the list of Server classes.
|
||||
* @see #setServerClasses(String[])
|
||||
* @see http://www.eclipse.org/jetty/documentation/current/jetty-classloading.html
|
||||
* @see <a href="Jetty Documentation: Classloading">http://www.eclipse.org/jetty/documentation/current/jetty-classloading.html</a>
|
||||
* @param classOrPackage A fully qualified class name (eg com.foo.MyClass)
|
||||
* or a qualified package name ending with '.' (eg com.foo.). If the class
|
||||
* or package has '-' it is excluded from the server classes and order is thus
|
||||
|
@ -707,7 +706,7 @@ public class WebAppContext extends ServletContextHandler implements WebAppClassL
|
|||
|
||||
/* ------------------------------------------------------------ */
|
||||
/** Add to the list of System classes.
|
||||
* @see http://www.eclipse.org/jetty/documentation/current/jetty-classloading.html
|
||||
* @see <a href="Jetty Documentation: Classloading">http://www.eclipse.org/jetty/documentation/current/jetty-classloading.html</a>
|
||||
* @see #setSystemClasses(String[])
|
||||
* @param classOrPackage A fully qualified class name (eg com.foo.MyClass)
|
||||
* or a qualified package name ending with '.' (eg com.foo.). If the class
|
||||
|
@ -727,7 +726,7 @@ public class WebAppContext extends ServletContextHandler implements WebAppClassL
|
|||
/* ------------------------------------------------------------ */
|
||||
/** Prepend to the list of System classes.
|
||||
* @see #setSystemClasses(String[])
|
||||
* @see http://www.eclipse.org/jetty/documentation/current/jetty-classloading.html
|
||||
* @see <a href="Jetty Documentation: Classloading">http://www.eclipse.org/jetty/documentation/current/jetty-classloading.html</a>
|
||||
* @param classOrPackage A fully qualified class name (eg com.foo.MyClass)
|
||||
* or a qualified package name ending with '.' (eg com.foo.). If the class
|
||||
* or package has '-' it is excluded from the system classes and order is thus
|
||||
|
|
Loading…
Reference in New Issue