more javadoc fixes #2056
Signed-off-by: olivier lamy <olamy@webtide.com>
This commit is contained in:
parent
e07ba49283
commit
f07ea2bbf3
|
@ -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;
|
||||
|
|
|
@ -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();
|
||||
|
||||
|
|
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue