Fixing javadoc
This commit is contained in:
parent
9daf520994
commit
a1775c4415
|
@ -371,15 +371,6 @@ public class AnnotationParser
|
|||
final MethodInfo _mi;
|
||||
final Set<? extends Handler> _handlers;
|
||||
|
||||
|
||||
/**
|
||||
* @param classname
|
||||
* @param access
|
||||
* @param name
|
||||
* @param methodDesc
|
||||
* @param signature
|
||||
* @param exceptions
|
||||
*/
|
||||
public MyMethodVisitor(final Set<? extends Handler> handlers,
|
||||
final ClassInfo classInfo,
|
||||
final int access,
|
||||
|
@ -424,9 +415,6 @@ public class AnnotationParser
|
|||
final Set<? extends Handler> _handlers;
|
||||
|
||||
|
||||
/**
|
||||
* @param classname
|
||||
*/
|
||||
public MyFieldVisitor(final Set<? extends Handler> handlers,
|
||||
final ClassInfo classInfo,
|
||||
final int access,
|
||||
|
|
|
@ -50,8 +50,9 @@ public class ContainerInitializerAnnotationHandler extends AbstractHandler
|
|||
|
||||
/**
|
||||
* Handle finding a class that is annotated with the annotation we were constructed with.
|
||||
* @see org.eclipse.jetty.annotations.AnnotationParser.DiscoverableAnnotationHandler#handle(ClassInfo)
|
||||
* */
|
||||
*
|
||||
* @see org.eclipse.jetty.annotations.AnnotationParser.Handler#handle(ClassInfo, String)
|
||||
*/
|
||||
public void handle(ClassInfo info, String annotationName)
|
||||
{
|
||||
if (annotationName == null || !_annotation.getName().equals(annotationName))
|
||||
|
@ -63,7 +64,7 @@ public class ContainerInitializerAnnotationHandler extends AbstractHandler
|
|||
/**
|
||||
* Handle finding a field that is annotated with the annotation we were constructed with.
|
||||
*
|
||||
* @see org.eclipse.jetty.annotations.AnnotationParser.DiscoverableAnnotationHandler#handle(org.eclipse.jetty.annotations.AnnotationParser.FieldAnnotationInfo)
|
||||
* @see org.eclipse.jetty.annotations.AnnotationParser.Handler#handle(FieldInfo, String)
|
||||
*/
|
||||
public void handle(FieldInfo info, String annotationName)
|
||||
{
|
||||
|
@ -75,7 +76,7 @@ public class ContainerInitializerAnnotationHandler extends AbstractHandler
|
|||
/**
|
||||
* Handle finding a method that is annotated with the annotation we were constructed with.
|
||||
*
|
||||
* @see org.eclipse.jetty.annotations.AnnotationParser.DiscoverableAnnotationHandler#handle(org.eclipse.jetty.annotations.AnnotationParser.MethodAnnotationInfo)
|
||||
* @see org.eclipse.jetty.annotations.AnnotationParser.Handler#handle(MethodInfo, String)
|
||||
*/
|
||||
public void handle(MethodInfo info, String annotationName)
|
||||
{
|
||||
|
|
|
@ -36,7 +36,7 @@ public class WebListenerAnnotationHandler extends AbstractDiscoverableAnnotation
|
|||
|
||||
|
||||
/**
|
||||
* @see org.eclipse.jetty.annotations.AnnotationParser.DiscoverableAnnotationHandler#handle(ClassAnnotationInfo)
|
||||
* @see org.eclipse.jetty.annotations.AnnotationParser.Handler#handle(ClassInfo, String)
|
||||
*/
|
||||
public void handle(ClassInfo info, String annotationName)
|
||||
{
|
||||
|
|
|
@ -18,14 +18,11 @@
|
|||
|
||||
package org.eclipse.jetty.annotations;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import org.eclipse.jetty.annotations.AnnotationParser.ClassInfo;
|
||||
import org.eclipse.jetty.annotations.AnnotationParser.FieldInfo;
|
||||
import org.eclipse.jetty.annotations.AnnotationParser.MethodInfo;
|
||||
import org.eclipse.jetty.util.log.Log;
|
||||
import org.eclipse.jetty.util.log.Logger;
|
||||
import org.eclipse.jetty.webapp.DiscoveredAnnotation;
|
||||
import org.eclipse.jetty.webapp.WebAppContext;
|
||||
|
||||
/**
|
||||
|
@ -47,8 +44,7 @@ public class WebServletAnnotationHandler extends AbstractDiscoverableAnnotationH
|
|||
/**
|
||||
* Handle discovering a WebServlet annotation.
|
||||
*
|
||||
*
|
||||
* @see org.eclipse.jetty.annotations.AnnotationParser.DiscoverableAnnotationHandler#handleClass(java.lang.String, int, int, java.lang.String, java.lang.String, java.lang.String[], java.lang.String, java.util.List)
|
||||
* @see org.eclipse.jetty.annotations.AnnotationParser.Handler#handle(ClassInfo, String)
|
||||
*/
|
||||
@Override
|
||||
public void handle(ClassInfo info, String annotationName)
|
||||
|
|
Loading…
Reference in New Issue