more javadoc fixes #2056

Signed-off-by: olivier lamy <olamy@webtide.com>
This commit is contained in:
olivier lamy 2018-01-06 20:26:22 +11:00
parent e07ba49283
commit f07ea2bbf3
3 changed files with 5 additions and 2 deletions

View File

@ -890,9 +890,11 @@ public class AnnotationParser
*
* @param handlers the handlers to look for classes in
* @param entry the entry in the potentially MultiRelease jar resource to parse
* @param jar the jar file
* @throws Exception if unable to parse
*/
protected void parseJarEntry (Set<? extends Handler> handlers, Resource jar, MultiReleaseJarFile.VersionedJarEntry entry) throws Exception
protected void parseJarEntry (Set<? extends Handler> handlers, Resource jar, MultiReleaseJarFile.VersionedJarEntry entry)
throws Exception
{
if (jar == null || entry == null)
return;

View File

@ -117,6 +117,7 @@ public interface ISession extends Session
*
* @see #onShutdown()
* @see #close(int, String, Callback)
* @return <code>true</code> if the session has expired
*/
public boolean onIdleTimeout();

View File

@ -49,7 +49,7 @@ public interface IStream extends Stream, Closeable
/**
* @return the {@link org.eclipse.jetty.http2.api.Stream.Listener} associated with this stream
* @see #setListener(Listener)
* @see #setListener(Stream.Listener)
*/
public Listener getListener();