Fixing various javadoc errors

This commit is contained in:
Joakim Erdfelt 2013-09-25 08:11:32 -07:00
parent ac40e7ab6a
commit 948d97c60c
1 changed files with 16 additions and 16 deletions

View File

@ -57,7 +57,7 @@ public class JettyHttpExchange extends HttpExchange implements JettyExchange
/* ------------------------------------------------------------ */ /* ------------------------------------------------------------ */
/** /**
* @see org.eclipse.jetty.http.spi.JettyExchange#getRequestHeaders() * @see JettyHttpExchangeDelegate#getRequestHeaders()
*/ */
@Override @Override
public Headers getRequestHeaders() public Headers getRequestHeaders()
@ -67,7 +67,7 @@ public class JettyHttpExchange extends HttpExchange implements JettyExchange
/* ------------------------------------------------------------ */ /* ------------------------------------------------------------ */
/** /**
* @see org.eclipse.jetty.http.spi.JettyExchange#getResponseHeaders() * @see JettyHttpExchangeDelegate#getResponseHeaders()
*/ */
@Override @Override
public Headers getResponseHeaders() public Headers getResponseHeaders()
@ -77,7 +77,7 @@ public class JettyHttpExchange extends HttpExchange implements JettyExchange
/* ------------------------------------------------------------ */ /* ------------------------------------------------------------ */
/** /**
* @see org.eclipse.jetty.http.spi.JettyExchange#getRequestURI() * @see JettyHttpExchangeDelegate#getRequestURI()
*/ */
@Override @Override
public URI getRequestURI() public URI getRequestURI()
@ -87,7 +87,7 @@ public class JettyHttpExchange extends HttpExchange implements JettyExchange
/* ------------------------------------------------------------ */ /* ------------------------------------------------------------ */
/** /**
* @see org.eclipse.jetty.http.spi.JettyExchange#getRequestMethod() * @see JettyHttpExchangeDelegate#getRequestMethod()
*/ */
@Override @Override
public String getRequestMethod() public String getRequestMethod()
@ -97,7 +97,7 @@ public class JettyHttpExchange extends HttpExchange implements JettyExchange
/* ------------------------------------------------------------ */ /* ------------------------------------------------------------ */
/** /**
* @see org.eclipse.jetty.http.spi.JettyExchange#getHttpContext() * @see JettyHttpExchangeDelegate#getHttpContext()
*/ */
@Override @Override
public HttpContext getHttpContext() public HttpContext getHttpContext()
@ -107,7 +107,7 @@ public class JettyHttpExchange extends HttpExchange implements JettyExchange
/* ------------------------------------------------------------ */ /* ------------------------------------------------------------ */
/** /**
* @see org.eclipse.jetty.http.spi.JettyExchange#close() * @see JettyHttpExchangeDelegate#close()
*/ */
@Override @Override
public void close() public void close()
@ -127,7 +127,7 @@ public class JettyHttpExchange extends HttpExchange implements JettyExchange
/* ------------------------------------------------------------ */ /* ------------------------------------------------------------ */
/** /**
* @see org.eclipse.jetty.http.spi.JettyExchange#getRequestBody() * @see JettyHttpExchangeDelegate#getRequestBody()
*/ */
@Override @Override
public InputStream getRequestBody() public InputStream getRequestBody()
@ -137,7 +137,7 @@ public class JettyHttpExchange extends HttpExchange implements JettyExchange
/* ------------------------------------------------------------ */ /* ------------------------------------------------------------ */
/** /**
* @see org.eclipse.jetty.http.spi.JettyExchange#getResponseBody() * @see JettyHttpExchangeDelegate#getResponseBody()
*/ */
@Override @Override
public OutputStream getResponseBody() public OutputStream getResponseBody()
@ -147,7 +147,7 @@ public class JettyHttpExchange extends HttpExchange implements JettyExchange
/* ------------------------------------------------------------ */ /* ------------------------------------------------------------ */
/** /**
* @see org.eclipse.jetty.http.spi.JettyExchange#sendResponseHeaders(int, long) * @see JettyHttpExchangeDelegate#sendResponseHeaders(int, long)
*/ */
@Override @Override
public void sendResponseHeaders(int rCode, long responseLength) throws IOException public void sendResponseHeaders(int rCode, long responseLength) throws IOException
@ -157,7 +157,7 @@ public class JettyHttpExchange extends HttpExchange implements JettyExchange
/* ------------------------------------------------------------ */ /* ------------------------------------------------------------ */
/** /**
* @see org.eclipse.jetty.http.spi.JettyExchange#getRemoteAddress() * @see JettyHttpExchangeDelegate#getRemoteAddress()
*/ */
@Override @Override
public InetSocketAddress getRemoteAddress() public InetSocketAddress getRemoteAddress()
@ -167,7 +167,7 @@ public class JettyHttpExchange extends HttpExchange implements JettyExchange
/* ------------------------------------------------------------ */ /* ------------------------------------------------------------ */
/** /**
* @see org.eclipse.jetty.http.spi.JettyExchange#getResponseCode() * @see JettyHttpExchangeDelegate#getResponseCode()
*/ */
@Override @Override
public int getResponseCode() public int getResponseCode()
@ -177,7 +177,7 @@ public class JettyHttpExchange extends HttpExchange implements JettyExchange
/* ------------------------------------------------------------ */ /* ------------------------------------------------------------ */
/** /**
* @see org.eclipse.jetty.http.spi.JettyExchange#getLocalAddress() * @see JettyHttpExchangeDelegate#getLocalAddress()
*/ */
@Override @Override
public InetSocketAddress getLocalAddress() public InetSocketAddress getLocalAddress()
@ -187,7 +187,7 @@ public class JettyHttpExchange extends HttpExchange implements JettyExchange
/* ------------------------------------------------------------ */ /* ------------------------------------------------------------ */
/** /**
* @see org.eclipse.jetty.http.spi.JettyExchange#getProtocol() * @see JettyHttpExchangeDelegate#getProtocol()
*/ */
@Override @Override
public String getProtocol() public String getProtocol()
@ -197,7 +197,7 @@ public class JettyHttpExchange extends HttpExchange implements JettyExchange
/* ------------------------------------------------------------ */ /* ------------------------------------------------------------ */
/** /**
* @see org.eclipse.jetty.http.spi.JettyExchange#getAttribute(java.lang.String) * @see JettyHttpExchangeDelegate#getAttribute(java.lang.String)
*/ */
@Override @Override
public Object getAttribute(String name) public Object getAttribute(String name)
@ -207,7 +207,7 @@ public class JettyHttpExchange extends HttpExchange implements JettyExchange
/* ------------------------------------------------------------ */ /* ------------------------------------------------------------ */
/** /**
* @see org.eclipse.jetty.http.spi.JettyExchange#setAttribute(java.lang.String, java.lang.Object) * @see JettyHttpExchangeDelegate#setAttribute(java.lang.String, java.lang.Object)
*/ */
@Override @Override
public void setAttribute(String name, Object value) public void setAttribute(String name, Object value)
@ -217,7 +217,7 @@ public class JettyHttpExchange extends HttpExchange implements JettyExchange
/* ------------------------------------------------------------ */ /* ------------------------------------------------------------ */
/** /**
* @see org.eclipse.jetty.http.spi.JettyExchange#setStreams(java.io.InputStream, java.io.OutputStream) * @see JettyHttpExchangeDelegate#setStreams(java.io.InputStream, java.io.OutputStream)
*/ */
@Override @Override
public void setStreams(InputStream i, OutputStream o) public void setStreams(InputStream i, OutputStream o)