Fixing javadoc visibility

This commit is contained in:
Joakim Erdfelt 2015-04-23 17:07:28 -07:00
parent 697e839224
commit 77c02af49f
1 changed files with 5 additions and 9 deletions

View File

@ -28,15 +28,11 @@ import org.eclipse.jetty.plus.annotation.ContainerInitializer;
/** /**
* ContainerInitializerAnnotationHandler * ContainerInitializerAnnotationHandler
* * <p>
* Discovers classes that contain the specified annotation, either at class or * Discovers classes that contain the specified annotation, either at class or
* method level. The specified annotation is derived from an @HandlesTypes on * method level. The specified annotation is derived from an <code>&#064;HandlesTypes</code> on
* a ServletContainerInitializer class. * a ServletContainerInitializer class.
*/ */
/**
* @author janb
*
*/
public class ContainerInitializerAnnotationHandler extends AbstractHandler public class ContainerInitializerAnnotationHandler extends AbstractHandler
{ {
final ContainerInitializer _initializer; final ContainerInitializer _initializer;
@ -51,7 +47,7 @@ public class ContainerInitializerAnnotationHandler extends AbstractHandler
/** /**
* Handle finding a class that is annotated with the annotation we were constructed with. * Handle finding a class that is annotated with the annotation we were constructed with.
* *
* @see org.eclipse.jetty.annotations.AnnotationParser.Handler#handle(ClassInfo, String) * @see org.eclipse.jetty.annotations.AnnotationParser.Handler#handle(org.eclipse.jetty.annotations.AnnotationParser.ClassInfo, String)
*/ */
public void handle(ClassInfo info, String annotationName) public void handle(ClassInfo info, String annotationName)
{ {
@ -64,7 +60,7 @@ public class ContainerInitializerAnnotationHandler extends AbstractHandler
/** /**
* Handle finding a field that is annotated with the annotation we were constructed with. * Handle finding a field that is annotated with the annotation we were constructed with.
* *
* @see org.eclipse.jetty.annotations.AnnotationParser.Handler#handle(FieldInfo, String) * @see org.eclipse.jetty.annotations.AnnotationParser.Handler#handle(org.eclipse.jetty.annotations.AnnotationParser.FieldInfo, String)
*/ */
public void handle(FieldInfo info, String annotationName) public void handle(FieldInfo info, String annotationName)
{ {
@ -76,7 +72,7 @@ public class ContainerInitializerAnnotationHandler extends AbstractHandler
/** /**
* Handle finding a method that is annotated with the annotation we were constructed with. * Handle finding a method that is annotated with the annotation we were constructed with.
* *
* @see org.eclipse.jetty.annotations.AnnotationParser.Handler#handle(MethodInfo, String) * @see org.eclipse.jetty.annotations.AnnotationParser.Handler#handle(org.eclipse.jetty.annotations.AnnotationParser.MethodInfo, String)
*/ */
public void handle(MethodInfo info, String annotationName) public void handle(MethodInfo info, String annotationName)
{ {