Fixing various javadoc errors

This commit is contained in:
Joakim Erdfelt 2013-09-25 08:11:32 -07:00
parent 0e34cdf7d8
commit ac40e7ab6a
10 changed files with 24 additions and 28 deletions

View File

@ -328,7 +328,7 @@ public class AnnotationConfiguration extends AbstractConfiguration
/** /**
* Check to see if the ServletContainerIntializer loaded via the ServiceLoader came * Check to see if the ServletContainerIntializer loaded via the ServiceLoader came
* from a jar that is excluded by the fragment ordering. See ServletSpec 3.0 p.85. * from a jar that is excluded by the fragment ordering. See ServletSpec 3.0 p.85.
* @param orderedJars * @param context
* @param service * @param service
* @return * @return
*/ */

View File

@ -61,7 +61,7 @@ public class WebFilterAnnotation extends DiscoveredAnnotation
} }
/** /**
* @see org.eclipse.jetty.annotations.ClassAnnotation#apply() * @see DiscoveredAnnotation#apply()
*/ */
public void apply() public void apply()
{ {

View File

@ -57,7 +57,7 @@ public class WebListenerAnnotation extends DiscoveredAnnotation
} }
/** /**
* @see org.eclipse.jetty.annotations.ClassAnnotation#apply() * @see DiscoveredAnnotation#apply()
*/ */
public void apply() public void apply()
{ {

View File

@ -57,7 +57,7 @@ public class WebServletAnnotation extends DiscoveredAnnotation
} }
/** /**
* @see org.eclipse.jetty.annotations.ClassAnnotation#apply() * @see DiscoveredAnnotation#apply()
*/ */
public void apply() public void apply()
{ {

View File

@ -31,7 +31,6 @@ import org.eclipse.jetty.http.HttpParser.State;
import org.eclipse.jetty.util.BufferUtil; import org.eclipse.jetty.util.BufferUtil;
import org.eclipse.jetty.util.StringUtil; import org.eclipse.jetty.util.StringUtil;
import org.hamcrest.Matchers; import org.hamcrest.Matchers;
import org.junit.Assert;
import org.junit.Before; import org.junit.Before;
import org.junit.Test; import org.junit.Test;
@ -42,8 +41,8 @@ public class HttpParserTest
{ {
/* ------------------------------------------------------------------------------- */ /* ------------------------------------------------------------------------------- */
/** /**
* Parse until {@link #END END} state. * Parse until {@link State#END} state.
* If the parser is already in the END state, then it is {@link #reset reset} and re-parsed. * If the parser is already in the END state, then it is {@link HttpParser#reset()} and re-parsed.
* @param parser The parser to test * @param parser The parser to test
* @throws IllegalStateException If the buffers have already been partially parsed. * @throws IllegalStateException If the buffers have already been partially parsed.
*/ */

View File

@ -174,7 +174,7 @@ public class JettyRunMojo extends AbstractJettyMojo
/** /**
* Verify the configuration given in the pom. * Verify the configuration given in the pom.
* *
* @see org.mortbay.jetty.plugin.AbstractJettyMojo#checkPomConfiguration() * @see AbstractJettyMojo#checkPomConfiguration()
*/ */
public void checkPomConfiguration () throws MojoExecutionException public void checkPomConfiguration () throws MojoExecutionException
{ {

View File

@ -78,7 +78,7 @@ public class JettyRunWarExplodedMojo extends AbstractJettyMojo
/** /**
* *
* @see org.mortbay.jetty.plugin.AbstractJettyMojo#checkPomConfiguration() * @see AbstractJettyMojo#checkPomConfiguration()
*/ */
public void checkPomConfiguration() throws MojoExecutionException public void checkPomConfiguration() throws MojoExecutionException
{ {
@ -89,7 +89,7 @@ public class JettyRunWarExplodedMojo extends AbstractJettyMojo
/** /**
* @see org.mortbay.jetty.plugin.AbstractJettyMojo#configureScanner() * @see AbstractJettyMojo#configureScanner()
*/ */
public void configureScanner() throws MojoExecutionException public void configureScanner() throws MojoExecutionException
{ {

View File

@ -83,7 +83,7 @@ public class JettyRunWarMojo extends AbstractJettyMojo
/** /**
* @see org.mortbay.jetty.plugin.AbstractJettyMojo#checkPomConfiguration() * @see AbstractJettyMojo#checkPomConfiguration()
*/ */
public void checkPomConfiguration() throws MojoExecutionException public void checkPomConfiguration() throws MojoExecutionException
{ {
@ -94,7 +94,7 @@ public class JettyRunWarMojo extends AbstractJettyMojo
/** /**
* @see org.eclipse.jetty.server.plugin.AbstractJettyMojo#configureScanner() * @see AbstractJettyMojo#configureScanner()
*/ */
public void configureScanner() throws MojoExecutionException public void configureScanner() throws MojoExecutionException
{ {

View File

@ -41,10 +41,7 @@ import org.junit.Test;
/** /**
* This tests verifies that merging of queryStrings works when dispatching * This tests verifies that merging of queryStrings works when dispatching
* Requests via {@link Continuation} multiple times. * Requests via {@link AsyncContext} multiple times.
*
* @author tbecker
*
*/ */
public class AsyncContextDispatchWithQueryStrings { public class AsyncContextDispatchWithQueryStrings {

View File

@ -102,7 +102,7 @@ public class MultiMapTest
} }
/** /**
* Tests {@link MultiMap#putValues(Object, List)} * Tests {@link MultiMap#putValues(String, List)}
*/ */
@Test @Test
public void testPutValues_List() public void testPutValues_List()
@ -122,7 +122,7 @@ public class MultiMapTest
} }
/** /**
* Tests {@link MultiMap#putValues(Object, String...)} * Tests {@link MultiMap#putValues(String, Object...)}
*/ */
@Test @Test
public void testPutValues_StringArray() public void testPutValues_StringArray()
@ -138,7 +138,7 @@ public class MultiMapTest
} }
/** /**
* Tests {@link MultiMap#putValues(Object, String...)} * Tests {@link MultiMap#putValues(String, Object...)}
*/ */
@Test @Test
public void testPutValues_VarArgs() public void testPutValues_VarArgs()
@ -153,7 +153,7 @@ public class MultiMapTest
} }
/** /**
* Tests {@link MultiMap#add(Object, Object)} * Tests {@link MultiMap#add(String, Object)}
*/ */
@Test @Test
public void testAdd() public void testAdd()
@ -176,7 +176,7 @@ public class MultiMapTest
} }
/** /**
* Tests {@link MultiMap#addValues(Object, List)} * Tests {@link MultiMap#addValues(String, List)}
*/ */
@Test @Test
public void testAddValues_List() public void testAddValues_List()
@ -202,7 +202,7 @@ public class MultiMapTest
} }
/** /**
* Tests {@link MultiMap#addValues(Object, List)} * Tests {@link MultiMap#addValues(String, List)}
*/ */
@Test @Test
public void testAddValues_List_Empty() public void testAddValues_List_Empty()
@ -225,7 +225,7 @@ public class MultiMapTest
} }
/** /**
* Tests {@link MultiMap#addValues(Object, String[])} * Tests {@link MultiMap#addValues(String, Object[])}
*/ */
@Test @Test
public void testAddValues_StringArray() public void testAddValues_StringArray()
@ -248,7 +248,7 @@ public class MultiMapTest
} }
/** /**
* Tests {@link MultiMap#addValues(Object, String[])} * Tests {@link MultiMap#addValues(String, Object[])}
*/ */
@Test @Test
public void testAddValues_StringArray_Empty() public void testAddValues_StringArray_Empty()
@ -271,7 +271,7 @@ public class MultiMapTest
} }
/** /**
* Tests {@link MultiMap#removeValue(Object, Object)} * Tests {@link MultiMap#removeValue(String, Object)}
*/ */
@Test @Test
public void testRemoveValue() public void testRemoveValue()
@ -293,7 +293,7 @@ public class MultiMapTest
} }
/** /**
* Tests {@link MultiMap#removeValue(Object, Object)} * Tests {@link MultiMap#removeValue(String, Object)}
*/ */
@Test @Test
public void testRemoveValue_InvalidItem() public void testRemoveValue_InvalidItem()
@ -314,7 +314,7 @@ public class MultiMapTest
} }
/** /**
* Tests {@link MultiMap#removeValue(Object, Object)} * Tests {@link MultiMap#removeValue(String, Object)}
*/ */
@Test @Test
public void testRemoveValue_AllItems() public void testRemoveValue_AllItems()
@ -344,7 +344,7 @@ public class MultiMapTest
} }
/** /**
* Tests {@link MultiMap#removeValue(Object, Object)} * Tests {@link MultiMap#removeValue(String, Object)}
*/ */
@Test @Test
public void testRemoveValue_FromEmpty() public void testRemoveValue_FromEmpty()