Fixing various javadoc errors
This commit is contained in:
parent
0e34cdf7d8
commit
ac40e7ab6a
|
@ -328,7 +328,7 @@ public class AnnotationConfiguration extends AbstractConfiguration
|
|||
/**
|
||||
* 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.
|
||||
* @param orderedJars
|
||||
* @param context
|
||||
* @param service
|
||||
* @return
|
||||
*/
|
||||
|
|
|
@ -61,7 +61,7 @@ public class WebFilterAnnotation extends DiscoveredAnnotation
|
|||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.jetty.annotations.ClassAnnotation#apply()
|
||||
* @see DiscoveredAnnotation#apply()
|
||||
*/
|
||||
public void apply()
|
||||
{
|
||||
|
|
|
@ -57,7 +57,7 @@ public class WebListenerAnnotation extends DiscoveredAnnotation
|
|||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.jetty.annotations.ClassAnnotation#apply()
|
||||
* @see DiscoveredAnnotation#apply()
|
||||
*/
|
||||
public void apply()
|
||||
{
|
||||
|
|
|
@ -57,7 +57,7 @@ public class WebServletAnnotation extends DiscoveredAnnotation
|
|||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.jetty.annotations.ClassAnnotation#apply()
|
||||
* @see DiscoveredAnnotation#apply()
|
||||
*/
|
||||
public void apply()
|
||||
{
|
||||
|
|
|
@ -31,7 +31,6 @@ import org.eclipse.jetty.http.HttpParser.State;
|
|||
import org.eclipse.jetty.util.BufferUtil;
|
||||
import org.eclipse.jetty.util.StringUtil;
|
||||
import org.hamcrest.Matchers;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
|
@ -42,8 +41,8 @@ public class HttpParserTest
|
|||
{
|
||||
/* ------------------------------------------------------------------------------- */
|
||||
/**
|
||||
* Parse until {@link #END END} state.
|
||||
* If the parser is already in the END state, then it is {@link #reset reset} and re-parsed.
|
||||
* Parse until {@link State#END} state.
|
||||
* If the parser is already in the END state, then it is {@link HttpParser#reset()} and re-parsed.
|
||||
* @param parser The parser to test
|
||||
* @throws IllegalStateException If the buffers have already been partially parsed.
|
||||
*/
|
||||
|
|
|
@ -174,7 +174,7 @@ public class JettyRunMojo extends AbstractJettyMojo
|
|||
/**
|
||||
* Verify the configuration given in the pom.
|
||||
*
|
||||
* @see org.mortbay.jetty.plugin.AbstractJettyMojo#checkPomConfiguration()
|
||||
* @see AbstractJettyMojo#checkPomConfiguration()
|
||||
*/
|
||||
public void checkPomConfiguration () throws MojoExecutionException
|
||||
{
|
||||
|
|
|
@ -78,7 +78,7 @@ public class JettyRunWarExplodedMojo extends AbstractJettyMojo
|
|||
|
||||
/**
|
||||
*
|
||||
* @see org.mortbay.jetty.plugin.AbstractJettyMojo#checkPomConfiguration()
|
||||
* @see AbstractJettyMojo#checkPomConfiguration()
|
||||
*/
|
||||
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
|
||||
{
|
||||
|
|
|
@ -83,7 +83,7 @@ public class JettyRunWarMojo extends AbstractJettyMojo
|
|||
|
||||
|
||||
/**
|
||||
* @see org.mortbay.jetty.plugin.AbstractJettyMojo#checkPomConfiguration()
|
||||
* @see AbstractJettyMojo#checkPomConfiguration()
|
||||
*/
|
||||
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
|
||||
{
|
||||
|
|
|
@ -41,10 +41,7 @@ import org.junit.Test;
|
|||
|
||||
/**
|
||||
* This tests verifies that merging of queryStrings works when dispatching
|
||||
* Requests via {@link Continuation} multiple times.
|
||||
*
|
||||
* @author tbecker
|
||||
*
|
||||
* Requests via {@link AsyncContext} multiple times.
|
||||
*/
|
||||
public class AsyncContextDispatchWithQueryStrings {
|
||||
|
||||
|
|
|
@ -102,7 +102,7 @@ public class MultiMapTest
|
|||
}
|
||||
|
||||
/**
|
||||
* Tests {@link MultiMap#putValues(Object, List)}
|
||||
* Tests {@link MultiMap#putValues(String, List)}
|
||||
*/
|
||||
@Test
|
||||
public void testPutValues_List()
|
||||
|
@ -122,7 +122,7 @@ public class MultiMapTest
|
|||
}
|
||||
|
||||
/**
|
||||
* Tests {@link MultiMap#putValues(Object, String...)}
|
||||
* Tests {@link MultiMap#putValues(String, Object...)}
|
||||
*/
|
||||
@Test
|
||||
public void testPutValues_StringArray()
|
||||
|
@ -138,7 +138,7 @@ public class MultiMapTest
|
|||
}
|
||||
|
||||
/**
|
||||
* Tests {@link MultiMap#putValues(Object, String...)}
|
||||
* Tests {@link MultiMap#putValues(String, Object...)}
|
||||
*/
|
||||
@Test
|
||||
public void testPutValues_VarArgs()
|
||||
|
@ -153,7 +153,7 @@ public class MultiMapTest
|
|||
}
|
||||
|
||||
/**
|
||||
* Tests {@link MultiMap#add(Object, Object)}
|
||||
* Tests {@link MultiMap#add(String, Object)}
|
||||
*/
|
||||
@Test
|
||||
public void testAdd()
|
||||
|
@ -176,7 +176,7 @@ public class MultiMapTest
|
|||
}
|
||||
|
||||
/**
|
||||
* Tests {@link MultiMap#addValues(Object, List)}
|
||||
* Tests {@link MultiMap#addValues(String, List)}
|
||||
*/
|
||||
@Test
|
||||
public void testAddValues_List()
|
||||
|
@ -202,7 +202,7 @@ public class MultiMapTest
|
|||
}
|
||||
|
||||
/**
|
||||
* Tests {@link MultiMap#addValues(Object, List)}
|
||||
* Tests {@link MultiMap#addValues(String, List)}
|
||||
*/
|
||||
@Test
|
||||
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
|
||||
public void testAddValues_StringArray()
|
||||
|
@ -248,7 +248,7 @@ public class MultiMapTest
|
|||
}
|
||||
|
||||
/**
|
||||
* Tests {@link MultiMap#addValues(Object, String[])}
|
||||
* Tests {@link MultiMap#addValues(String, Object[])}
|
||||
*/
|
||||
@Test
|
||||
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
|
||||
public void testRemoveValue()
|
||||
|
@ -293,7 +293,7 @@ public class MultiMapTest
|
|||
}
|
||||
|
||||
/**
|
||||
* Tests {@link MultiMap#removeValue(Object, Object)}
|
||||
* Tests {@link MultiMap#removeValue(String, Object)}
|
||||
*/
|
||||
@Test
|
||||
public void testRemoveValue_InvalidItem()
|
||||
|
@ -314,7 +314,7 @@ public class MultiMapTest
|
|||
}
|
||||
|
||||
/**
|
||||
* Tests {@link MultiMap#removeValue(Object, Object)}
|
||||
* Tests {@link MultiMap#removeValue(String, Object)}
|
||||
*/
|
||||
@Test
|
||||
public void testRemoveValue_AllItems()
|
||||
|
@ -344,7 +344,7 @@ public class MultiMapTest
|
|||
}
|
||||
|
||||
/**
|
||||
* Tests {@link MultiMap#removeValue(Object, Object)}
|
||||
* Tests {@link MultiMap#removeValue(String, Object)}
|
||||
*/
|
||||
@Test
|
||||
public void testRemoveValue_FromEmpty()
|
||||
|
|
Loading…
Reference in New Issue