This is an automated email from the ASF dual-hosted git repository.
garydgregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jelly.git
The following commit(s) were added to refs/heads/master by this push:
new dd091319 Javadoc
dd091319 is described below
commit dd0913194b0cc06aa0478bda0c63896a8c9f9b41
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jul 11 11:22:27 2026 -0400
Javadoc
---
.../org/apache/commons/jelly/JellyContext.java | 24 +++++++++++-----------
.../main/java/org/apache/commons/jelly/Tag.java | 8 ++++----
.../java/org/apache/commons/jelly/TagLibrary.java | 2 +-
.../java/org/apache/commons/jelly/TagSupport.java | 12 +++++------
.../java/org/apache/commons/jelly/XMLOutput.java | 2 +-
.../org/apache/commons/jelly/impl/TagScript.java | 4 ++--
.../org/apache/commons/jelly/parser/XMLParser.java | 4 ++--
.../apache/commons/jelly/tags/core/BreakTag.java | 2 +-
.../org/apache/commons/jelly/tags/core/IfTag.java | 2 +-
.../apache/commons/jelly/tags/core/ImportTag.java | 2 +-
.../apache/commons/jelly/tags/core/SwitchTag.java | 2 +-
.../apache/commons/jelly/tags/core/UseBeanTag.java | 4 ++--
.../apache/commons/jelly/tags/core/WhileTag.java | 2 +-
.../commons/jelly/util/ClassLoaderUtils.java | 2 +-
.../commons/jelly/util/NestedRuntimeException.java | 6 +++---
.../test/java/org/apache/commons/jelly/TJEcho.java | 4 ++--
.../org/apache/commons/jelly/tags/ant/AntTag.java | 8 ++++----
.../commons/jelly/tags/bean/MyTagLibrary.java | 2 +-
.../commons/jelly/tags/bsf/BSFTagLibrary.java | 2 +-
.../commons/jelly/tags/define/ClassLoaderTag.java | 4 ++--
.../apache/commons/jelly/tags/fmt/BundleTag.java | 4 ++--
.../commons/jelly/tags/fmt/SetLocaleTag.java | 14 ++++++-------
.../apache/commons/jelly/tags/fmt/TimeZoneTag.java | 4 ++--
.../commons/jelly/tags/http/HttpTagSupport.java | 10 ++++-----
.../commons/jelly/tags/http/MultipartPostTag.java | 2 +-
.../org/apache/commons/jelly/tags/http/Proxy.java | 8 ++++----
.../org/apache/commons/jelly/tags/http/PutTag.java | 4 ++--
.../apache/commons/jelly/tags/http/SessionTag.java | 4 ++--
.../commons/jelly/tags/jetty/HttpContextTag.java | 8 ++++----
.../jelly/tags/jetty/JellyResourceHttpHandler.java | 12 +++++------
.../jelly/tags/jetty/JettyHttpServerTag.java | 6 +++---
.../jelly/tags/jetty/SecurityHandlerTag.java | 8 ++++----
.../jelly/tags/junit/AssertFileContainsTag.java | 4 ++--
.../jelly/tags/junit/AssertFileExistsTag.java | 4 ++--
.../jelly/tags/junit/AssertFileNotFoundTag.java | 4 ++--
.../commons/jelly/tags/soap/StringInputStream.java | 2 +-
.../javax/servlet/jsp/jstl/sql/ResultImpl.java | 2 +-
.../javax/servlet/jsp/jstl/sql/ResultSupport.java | 6 +++---
.../apache/commons/jelly/tags/sql/ResultImpl.java | 2 +-
.../apache/commons/jelly/tags/swing/GbcTag.java | 6 +++---
.../apache/commons/jelly/swing/TestSwingTags.java | 4 ++--
.../apache/commons/jelly/tags/swt/ColorTag.java | 2 +-
.../org/apache/commons/jelly/tags/swt/FontTag.java | 4 ++--
.../org/apache/commons/jelly/tags/swt/GCTag.java | 4 ++--
.../commons/jelly/tags/swt/LayoutTagSupport.java | 2 +-
.../apache/commons/jelly/tags/swt/WidgetTag.java | 2 +-
.../commons/jelly/tags/util/AvailableTag.java | 4 ++--
.../apache/commons/jelly/tags/util/SortTag.java | 2 +-
.../apache/commons/jelly/tags/xml/TestXMLTags.java | 20 +++++++++---------
49 files changed, 128 insertions(+), 128 deletions(-)
diff --git a/core/src/main/java/org/apache/commons/jelly/JellyContext.java
b/core/src/main/java/org/apache/commons/jelly/JellyContext.java
index 7a39925b..611eb2fd 100644
--- a/core/src/main/java/org/apache/commons/jelly/JellyContext.java
+++ b/core/src/main/java/org/apache/commons/jelly/JellyContext.java
@@ -118,7 +118,7 @@ public class JellyContext {
* The parent's rootURL and currentURL are set on the child, and the
parent's variables are
* available in the child context under the name {@code parentScope}.
*
- * @param parent the parent context for the newly created context.
+ * @param parent The parent context for the newly created context.
*/
public JellyContext(final JellyContext parent) {
this.parent = parent;
@@ -135,8 +135,8 @@ public class JellyContext {
* The parent's rootURL are set on the child, and the parent's variables
are
* available in the child context under the name {@code parentScope}.
*
- * @param parentJellyContext the parent context for the newly created
context.
- * @param currentURL the root URL used in resolving relative resources
+ * @param parentJellyContext The parent context for the newly created
context.
+ * @param currentURL The root URL used in resolving relative resources
*/
public JellyContext(final JellyContext parentJellyContext, final URL
currentURL) {
this(parentJellyContext);
@@ -147,9 +147,9 @@ public class JellyContext {
* Create a new context with the given parent context.
* The parent's variables are available in the child context under the
name {@code parentScope}.
*
- * @param parentJellyContext the parent context for the newly created
context.
- * @param rootURL the root URL used in resolving absolute resources i.e.
those starting with '/'
- * @param currentURL the root URL used in resolving relative resources
+ * @param parentJellyContext The parent context for the newly created
context.
+ * @param rootURL The root URL used in resolving absolute resources i.e.
those starting with '/'
+ * @param currentURL The root URL used in resolving relative resources
*/
public JellyContext(final JellyContext parentJellyContext, final URL
rootURL, final URL currentURL) {
this(parentJellyContext, currentURL);
@@ -158,7 +158,7 @@ public class JellyContext {
/**
* Create a new context with the given rootURL
- * @param rootURL the root URL used in resolving absolute resources i.e.
those starting with '/'
+ * @param rootURL The root URL used in resolving absolute resources i.e.
those starting with '/'
*/
public JellyContext(final URL rootURL) {
this( rootURL, rootURL );
@@ -166,8 +166,8 @@ public class JellyContext {
/**
* Create a new context with the given rootURL and currentURL
- * @param rootURL the root URL used in resolving absolute resources i.e.
those starting with '/'
- * @param currentURL the root URL used in resolving relative resources
+ * @param rootURL The root URL used in resolving absolute resources i.e.
those starting with '/'
+ * @param currentURL The root URL used in resolving relative resources
*/
public JellyContext(final URL rootURL, final URL currentURL) {
this.rootURL = rootURL;
@@ -442,7 +442,7 @@ public class JellyContext {
/**
* Gets a system property and handle security exceptions
- * @param name the name of the property to retrieve
+ * @param name The name of the property to retrieve
* @return The value of the property, or null if a SecurityException occurs
*/
private Object getSystemProperty(final String name) {
@@ -928,7 +928,7 @@ public class JellyContext {
/**
* Change the parent context to the one provided
- * @param context the new parent context
+ * @param context The new parent context
*/
protected void setParent(final JellyContext context)
{
@@ -963,7 +963,7 @@ public class JellyContext {
}
/**
- * @param suppressExpressionExceptions the suppressExpressionExceptions
to set
+ * @param suppressExpressionExceptions The suppressExpressionExceptions
to set
* @deprecated after v1.1, exceptions will never be suppressed
*/
@Deprecated
diff --git a/core/src/main/java/org/apache/commons/jelly/Tag.java
b/core/src/main/java/org/apache/commons/jelly/Tag.java
index bd7ab0d8..b11fff6f 100644
--- a/core/src/main/java/org/apache/commons/jelly/Tag.java
+++ b/core/src/main/java/org/apache/commons/jelly/Tag.java
@@ -73,14 +73,14 @@ public interface Tag {
/**
* Sets the body of the tag.
*
- * @param body the body of the tag.
+ * @param body The body of the tag.
*/
void setBody(Script body);
/**
* Sets the context in which the tag will be run.
*
- * @param context the context in which the tag will be run.
+ * @param context The context in which the tag will be run.
* @throws JellyTagException Thrown on error.
*/
void setContext(JellyContext context) throws JellyTagException;
@@ -88,14 +88,14 @@ public interface Tag {
/**
* Sets the parent of this tag.
*
- * @param parent the parent of this tag.
+ * @param parent The parent of this tag.
*/
void setParent(Tag parent);
/**
* Sets the tag library. Defaults to do nothing.
*
- * @param tagLibrary the tag library.
+ * @param tagLibrary The tag library.
* @since 1.1.0
*/
default void setTagLib(TagLibrary tagLibrary) {
diff --git a/core/src/main/java/org/apache/commons/jelly/TagLibrary.java
b/core/src/main/java/org/apache/commons/jelly/TagLibrary.java
index 8346af04..b099cdc8 100644
--- a/core/src/main/java/org/apache/commons/jelly/TagLibrary.java
+++ b/core/src/main/java/org/apache/commons/jelly/TagLibrary.java
@@ -164,7 +164,7 @@ public abstract class TagLibrary {
}
/**
- * @param allowUnknownTags the allowUnknownTags to set
+ * @param allowUnknownTags The allowUnknownTags to set
*/
public void setAllowUnknownTags(final boolean allowUnknownTags) {
this.allowUnknownTags = allowUnknownTags;
diff --git a/core/src/main/java/org/apache/commons/jelly/TagSupport.java
b/core/src/main/java/org/apache/commons/jelly/TagSupport.java
index d65956c6..5a1aaa1b 100644
--- a/core/src/main/java/org/apache/commons/jelly/TagSupport.java
+++ b/core/src/main/java/org/apache/commons/jelly/TagSupport.java
@@ -33,8 +33,8 @@ public abstract class TagSupport implements Tag {
* Searches up the parent hierarchy from the given tag
* for a Tag of the given type
*
- * @param from the tag to start searching from
- * @param tagClass the type of the tag to find
+ * @param from The tag to start searching from
+ * @param tagClass The type of the tag to find
* @return The tag of the given type or null if it could not be found
*/
public static Tag findAncestorWithClass(Tag from, final Class tagClass) {
@@ -54,8 +54,8 @@ public abstract class TagSupport implements Tag {
* Searches up the parent hierarchy from the given tag
* for a Tag matching one or more of given types.
*
- * @param from the tag to start searching from
- * @param tagClasses an array of types that might match
+ * @param from The tag to start searching from
+ * @param tagClasses An array of types that might match
* @return The tag of the given type or null if it could not be found
* @see #findAncestorWithClass(Tag,Collection)
*/
@@ -67,8 +67,8 @@ public abstract class TagSupport implements Tag {
* Searches up the parent hierarchy from the given tag
* for a Tag matching one or more of given types.
*
- * @param from the tag to start searching from
- * @param tagClasses a Collection of Class types that might match
+ * @param from The tag to start searching from
+ * @param tagClasses A Collection of Class types that might match
* @return The tag of the given type or null if it could not be found
*/
public static Tag findAncestorWithClass(Tag from, final Collection
tagClasses) {
diff --git a/core/src/main/java/org/apache/commons/jelly/XMLOutput.java
b/core/src/main/java/org/apache/commons/jelly/XMLOutput.java
index 53e9091d..b0b38952 100644
--- a/core/src/main/java/org/apache/commons/jelly/XMLOutput.java
+++ b/core/src/main/java/org/apache/commons/jelly/XMLOutput.java
@@ -587,7 +587,7 @@ public class XMLOutput implements ContentHandler,
LexicalHandler {
* Subclasses are invited to use this as a way for children tags to
* pass data to their parent.
*
- * @param object the data to pass
+ * @param object The data to pass
* @throws SAXException The application may raise an exception.
*/
public void objectData(final Object object) throws SAXException {
diff --git a/core/src/main/java/org/apache/commons/jelly/impl/TagScript.java
b/core/src/main/java/org/apache/commons/jelly/impl/TagScript.java
index b158a5e9..508cb396 100644
--- a/core/src/main/java/org/apache/commons/jelly/impl/TagScript.java
+++ b/core/src/main/java/org/apache/commons/jelly/impl/TagScript.java
@@ -225,7 +225,7 @@ public class TagScript implements Script {
* Converts the given value to the required type.
*
* @param value is the value to be converted. This will not be null
- * @param requiredType the type that the value should be converted to
+ * @param requiredType The type that the value should be converted to
*/
protected Object convertType(final Object value, final Class requiredType)
throws JellyException {
@@ -709,7 +709,7 @@ public class TagScript implements Script {
}
/**
- * @param tagLibrary the tagLibrary to set
+ * @param tagLibrary The tagLibrary to set
*/
public void setTagLibrary(final TagLibrary tagLibrary) {
this.tagLibrary = tagLibrary;
diff --git a/core/src/main/java/org/apache/commons/jelly/parser/XMLParser.java
b/core/src/main/java/org/apache/commons/jelly/parser/XMLParser.java
index 3a8b77bb..e29b6499 100644
--- a/core/src/main/java/org/apache/commons/jelly/parser/XMLParser.java
+++ b/core/src/main/java/org/apache/commons/jelly/parser/XMLParser.java
@@ -293,8 +293,8 @@ public class XMLParser extends DefaultHandler {
/**
* Configure a newly created TagScript instance before any Expressions are
created;
* see configureTagScript(TagScript) for StaticTags
- * @param tagLibrary the TagLibrary that created the TagScript
- * @param aTagScript the TagScript that's just been created
+ * @param tagLibrary The TagLibrary that created the TagScript
+ * @param aTagScript The TagScript that's just been created
*/
protected void configureTagScript(final TagLibrary tagLibrary, final
TagScript aTagScript) {
// Set the TagLibrary that created the script
diff --git
a/core/src/main/java/org/apache/commons/jelly/tags/core/BreakTag.java
b/core/src/main/java/org/apache/commons/jelly/tags/core/BreakTag.java
index a9bf25d6..63e677a4 100644
--- a/core/src/main/java/org/apache/commons/jelly/tags/core/BreakTag.java
+++ b/core/src/main/java/org/apache/commons/jelly/tags/core/BreakTag.java
@@ -62,7 +62,7 @@ public class BreakTag extends TagSupport {
* If this is {@code null} or evaluates to
* {@code true} then the loop is terminated
*
- * @param test the Jelly expression to evaluate
+ * @param test The Jelly expression to evaluate
*/
public void setTest(final Expression test) {
this.test = test;
diff --git a/core/src/main/java/org/apache/commons/jelly/tags/core/IfTag.java
b/core/src/main/java/org/apache/commons/jelly/tags/core/IfTag.java
index f1377781..b840d3ee 100644
--- a/core/src/main/java/org/apache/commons/jelly/tags/core/IfTag.java
+++ b/core/src/main/java/org/apache/commons/jelly/tags/core/IfTag.java
@@ -46,7 +46,7 @@ public class IfTag extends TagSupport {
/** Sets the Jelly expression to evaluate. If this returns true, the body
of
* the tag is evaluated
*
- * @param test the Jelly expression to evaluate
+ * @param test The Jelly expression to evaluate
*/
public void setTest(final Expression test) {
this.test = test;
diff --git
a/core/src/main/java/org/apache/commons/jelly/tags/core/ImportTag.java
b/core/src/main/java/org/apache/commons/jelly/tags/core/ImportTag.java
index 8c1175ce..28d73128 100644
--- a/core/src/main/java/org/apache/commons/jelly/tags/core/ImportTag.java
+++ b/core/src/main/java/org/apache/commons/jelly/tags/core/ImportTag.java
@@ -59,7 +59,7 @@ public class ImportTag extends TagSupport {
/**
* Perform tag processing
- * @param output the destination for output
+ * @param output The destination for output
* @throws MissingAttributeException if a required attribute is missing
* @throws JellyTagException on any other errors
*/
diff --git
a/core/src/main/java/org/apache/commons/jelly/tags/core/SwitchTag.java
b/core/src/main/java/org/apache/commons/jelly/tags/core/SwitchTag.java
index 3e9058a7..a872c18d 100644
--- a/core/src/main/java/org/apache/commons/jelly/tags/core/SwitchTag.java
+++ b/core/src/main/java/org/apache/commons/jelly/tags/core/SwitchTag.java
@@ -94,7 +94,7 @@ public class SwitchTag extends TagSupport {
* Sets the value to switch on.
* Note that the {@link Expression} is evaluated only once, when the
* <switch> tag is evaluated.
- * @param on the value to switch on
+ * @param on The value to switch on
*/
public void setOn(final Expression on) {
this.on = on;
diff --git
a/core/src/main/java/org/apache/commons/jelly/tags/core/UseBeanTag.java
b/core/src/main/java/org/apache/commons/jelly/tags/core/UseBeanTag.java
index 40c42cc8..fda3e04f 100644
--- a/core/src/main/java/org/apache/commons/jelly/tags/core/UseBeanTag.java
+++ b/core/src/main/java/org/apache/commons/jelly/tags/core/UseBeanTag.java
@@ -233,8 +233,8 @@ public class UseBeanTag extends MapTagSupport implements
BeanSource {
* If {@link #isIgnoreUnknownProperties()} returns true, make sure that
every non-ignored ({@link #addIgnoreProperty(String)}) property matches a
writable
* property on the target bean.
*
- * @param bean the bean to validate
- * @param attributes the list of properties to validate
+ * @param bean The bean to validate
+ * @param attributes The list of properties to validate
* @throws JellyTagException when a property is not writeable
*/
protected void validateBeanProperties(final Object bean, final Map
attributes) throws JellyTagException {
diff --git
a/core/src/main/java/org/apache/commons/jelly/tags/core/WhileTag.java
b/core/src/main/java/org/apache/commons/jelly/tags/core/WhileTag.java
index 17ac8373..233699c0 100644
--- a/core/src/main/java/org/apache/commons/jelly/tags/core/WhileTag.java
+++ b/core/src/main/java/org/apache/commons/jelly/tags/core/WhileTag.java
@@ -74,7 +74,7 @@ public class WhileTag extends TagSupport {
/**
* Setter for the expression
- * @param e the expression to test
+ * @param e The expression to test
*/
public void setTest(final Expression e) {
this.test = e;
diff --git
a/core/src/main/java/org/apache/commons/jelly/util/ClassLoaderUtils.java
b/core/src/main/java/org/apache/commons/jelly/util/ClassLoaderUtils.java
index 5598f507..e93dd7a7 100644
--- a/core/src/main/java/org/apache/commons/jelly/util/ClassLoaderUtils.java
+++ b/core/src/main/java/org/apache/commons/jelly/util/ClassLoaderUtils.java
@@ -30,7 +30,7 @@ public class ClassLoaderUtils {
/**
* Gets the loader for the given class.
- * @param clazz the class to retrieve the loader for
+ * @param clazz The class to retrieve the loader for
* @return The class loader that loaded the provided class
*/
public static ClassLoader getClassLoader(final Class clazz) {
diff --git
a/core/src/main/java/org/apache/commons/jelly/util/NestedRuntimeException.java
b/core/src/main/java/org/apache/commons/jelly/util/NestedRuntimeException.java
index efef6fb0..d446103d 100644
---
a/core/src/main/java/org/apache/commons/jelly/util/NestedRuntimeException.java
+++
b/core/src/main/java/org/apache/commons/jelly/util/NestedRuntimeException.java
@@ -39,8 +39,8 @@ public class NestedRuntimeException extends RuntimeException {
* Constructs a new {@code NestedRuntimeException} with specified
* detail message and nested {@code Throwable}.
*
- * @param msg the error message
- * @param cause the exception or error that caused this exception to be
+ * @param msg The error message
+ * @param cause The exception or error that caused this exception to be
* thrown
*/
public NestedRuntimeException(final String msg, final Throwable cause) {
@@ -51,7 +51,7 @@ public class NestedRuntimeException extends RuntimeException {
* Constructs a new {@code NestedRuntimeException} with specified
* nested {@code Throwable}.
*
- * @param cause the exception or error that caused this exception to be
+ * @param cause The exception or error that caused this exception to be
* thrown
*/
public NestedRuntimeException(final Throwable cause) {
diff --git a/core/src/test/java/org/apache/commons/jelly/TJEcho.java
b/core/src/test/java/org/apache/commons/jelly/TJEcho.java
index 99d79f47..9c76c80c 100644
--- a/core/src/test/java/org/apache/commons/jelly/TJEcho.java
+++ b/core/src/test/java/org/apache/commons/jelly/TJEcho.java
@@ -53,14 +53,14 @@ public class TJEcho extends TagSupport {
}
/**
- * @param attr the attr to set
+ * @param attr The attr to set
*/
public void setAttr(final String attr) {
this.attr = attr;
}
/**
- * @param id the id to set
+ * @param id The id to set
*/
public void setId(final String id) {
this.id = id;
diff --git
a/jelly-tags/ant/src/main/java/org/apache/commons/jelly/tags/ant/AntTag.java
b/jelly-tags/ant/src/main/java/org/apache/commons/jelly/tags/ant/AntTag.java
index 2bdd1eef..b87a9e12 100644
--- a/jelly-tags/ant/src/main/java/org/apache/commons/jelly/tags/ant/AntTag.java
+++ b/jelly-tags/ant/src/main/java/org/apache/commons/jelly/tags/ant/AntTag.java
@@ -79,10 +79,10 @@ public class AntTag extends MapTagSupport implements
TaskSource {
/**
* @return An object create with the given constructor and args.
- * @param ctor a constructor to use creating the object
- * @param args the arguments to pass to the constructor
- * @param name the name of the data type being created
- * @param argDescription a human readable description of the args passed
+ * @param ctor A constructor to use creating the object
+ * @param args The arguments to pass to the constructor
+ * @param name The name of the data type being created
+ * @param argDescription A human readable description of the args passed
*/
private Object createDataType(final Constructor ctor, final Object[] args,
final String name, final String argDescription) {
try {
diff --git
a/jelly-tags/bean/src/test/java/org/apache/commons/jelly/tags/bean/MyTagLibrary.java
b/jelly-tags/bean/src/test/java/org/apache/commons/jelly/tags/bean/MyTagLibrary.java
index 61a035fe..7c213d08 100644
---
a/jelly-tags/bean/src/test/java/org/apache/commons/jelly/tags/bean/MyTagLibrary.java
+++
b/jelly-tags/bean/src/test/java/org/apache/commons/jelly/tags/bean/MyTagLibrary.java
@@ -65,7 +65,7 @@ public class MyTagLibrary extends TagLibrary {
* Gets the bean class that we should use for the given element name
*
* @param name is the XML element name
- * @param attributes the XML attributes
+ * @param attributes The XML attributes
* @return Class the bean class to use for this element or null if the tag
* is a nested property
*/
diff --git
a/jelly-tags/bsf/src/main/java/org/apache/commons/jelly/tags/bsf/BSFTagLibrary.java
b/jelly-tags/bsf/src/main/java/org/apache/commons/jelly/tags/bsf/BSFTagLibrary.java
index 73919bf7..21278b26 100644
---
a/jelly-tags/bsf/src/main/java/org/apache/commons/jelly/tags/bsf/BSFTagLibrary.java
+++
b/jelly-tags/bsf/src/main/java/org/apache/commons/jelly/tags/bsf/BSFTagLibrary.java
@@ -45,7 +45,7 @@ public class BSFTagLibrary extends CoreTagLibrary {
* Factory method to create a new ScriptTag with a BSFEngine
*
* @param name is the name of the tag (typically 'script')
- * @param attributes the attributes of the tag
+ * @param attributes The attributes of the tag
* @return Tag
*/
protected Tag createScriptTag(final String name, final Attributes
attributes) throws JellyException {
diff --git
a/jelly-tags/define/src/main/java/org/apache/commons/jelly/tags/define/ClassLoaderTag.java
b/jelly-tags/define/src/main/java/org/apache/commons/jelly/tags/define/ClassLoaderTag.java
index da2959ab..eff4cf0c 100644
---
a/jelly-tags/define/src/main/java/org/apache/commons/jelly/tags/define/ClassLoaderTag.java
+++
b/jelly-tags/define/src/main/java/org/apache/commons/jelly/tags/define/ClassLoaderTag.java
@@ -89,7 +89,7 @@ public class ClassLoaderTag extends BeanTag {
}
/**
- * @param url the url to load the classes from
+ * @param url The url to load the classes from
*/
public void setUrl(final String url) {
this.url = url;
@@ -99,7 +99,7 @@ public class ClassLoaderTag extends BeanTag {
//-------------------------------------------------------------------------
/**
- * @param var the variable to store the class loader in
+ * @param var The variable to store the class loader in
*/
public void setVar(final String var) {
this.var = var;
diff --git
a/jelly-tags/fmt/src/main/java/org/apache/commons/jelly/tags/fmt/BundleTag.java
b/jelly-tags/fmt/src/main/java/org/apache/commons/jelly/tags/fmt/BundleTag.java
index 2aa3e62f..7e2442a9 100644
---
a/jelly-tags/fmt/src/main/java/org/apache/commons/jelly/tags/fmt/BundleTag.java
+++
b/jelly-tags/fmt/src/main/java/org/apache/commons/jelly/tags/fmt/BundleTag.java
@@ -44,8 +44,8 @@ public class BundleTag extends TagSupport {
* its return value unless its locale represents an exact or language match
* with the given preferred locale.
*
- * @param basename the resource bundle base name
- * @param pref the preferred locale
+ * @param basename The resource bundle base name
+ * @param pref The preferred locale
* @param cl classloader used to find resource bundle
* @return The requested resource bundle, or {@code null} if no resource
* bundle with the given base name exists or if there is no exact- or
diff --git
a/jelly-tags/fmt/src/main/java/org/apache/commons/jelly/tags/fmt/SetLocaleTag.java
b/jelly-tags/fmt/src/main/java/org/apache/commons/jelly/tags/fmt/SetLocaleTag.java
index 74f3ebb6..b58a06cb 100644
---
a/jelly-tags/fmt/src/main/java/org/apache/commons/jelly/tags/fmt/SetLocaleTag.java
+++
b/jelly-tags/fmt/src/main/java/org/apache/commons/jelly/tags/fmt/SetLocaleTag.java
@@ -47,8 +47,8 @@ public class SetLocaleTag extends TagSupport {
* matches the preferred locale's language component and does not have any
* country component ("language match").
*
- * @param pref the preferred locale
- * @param avail the available formatting locales
+ * @param pref The preferred locale
+ * @param avail The available formatting locales
* @return Available locale that best matches the given preferred locale,
* or {@code null} if no match exists
*/
@@ -82,7 +82,7 @@ public class SetLocaleTag extends TagSupport {
* (if set to {@code true}, the formatting locale that is returned by
* this method is used to set the response locale).
*
- * @param avail the array of available locales
+ * @param avail The array of available locales
* @return The formatting locale to use
*/
static Locale getFormattingLocale(final JellyContext jc,
@@ -150,9 +150,9 @@ public class SetLocaleTag extends TagSupport {
* attribute exists in any of the scopes, the locale is taken from the
* named context configuration parameter.
*
- * @param jc the page in which to search for the named scoped
+ * @param jc The page in which to search for the named scoped
* attribute or context configuration parameter
- * @param name the name of the scoped attribute or context configuration
+ * @param name The name of the scoped attribute or context configuration
* parameter
*
* @return The locale specified by the named scoped attribute or context
@@ -189,8 +189,8 @@ public class SetLocaleTag extends TagSupport {
* If the given locale string is null or empty, the runtime's default
* locale is returned.
*
- * @param locale the locale string to parse
- * @param variant the variant
+ * @param locale The locale string to parse
+ * @param variant The variant
* @return {@code java.util.Locale} object corresponding to the given
* locale string, or the runtime's default locale if the locale string is
* null or empty
diff --git
a/jelly-tags/fmt/src/main/java/org/apache/commons/jelly/tags/fmt/TimeZoneTag.java
b/jelly-tags/fmt/src/main/java/org/apache/commons/jelly/tags/fmt/TimeZoneTag.java
index a0bbf8d7..8429cd4c 100644
---
a/jelly-tags/fmt/src/main/java/org/apache/commons/jelly/tags/fmt/TimeZoneTag.java
+++
b/jelly-tags/fmt/src/main/java/org/apache/commons/jelly/tags/fmt/TimeZoneTag.java
@@ -44,9 +44,9 @@ public class TimeZoneTag extends TagSupport {
* {@code javax.servlet.jsp.jstl.core.Config.FMT_TIME_ZONE}
* is used.
*
- * @param jc the page containing the action for which the
+ * @param jc The page containing the action for which the
* time zone needs to be determined
- * @param fromTag the action for which the time zone needs to be
+ * @param fromTag The action for which the time zone needs to be
* determined
*
* @return The time zone, or {@code null} if the given action is not
diff --git
a/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/HttpTagSupport.java
b/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/HttpTagSupport.java
index a2f4a7b9..8a62b00b 100644
---
a/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/HttpTagSupport.java
+++
b/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/HttpTagSupport.java
@@ -75,8 +75,8 @@ public abstract class HttpTagSupport extends TagSupport {
/**
* Add a parameter to the list
*
- * @param name the parameter name
- * @param value the parameter value
+ * @param name The parameter name
+ * @param value The parameter value
*/
public void addParameter(final String name, final String value) {
getParameters().add(new NameValuePair(name, value));
@@ -85,8 +85,8 @@ public abstract class HttpTagSupport extends TagSupport {
/**
* Add a request header to the list
*
- * @param name the header name
- * @param value the header value
+ * @param name The header name
+ * @param value The header value
*/
public void addRequestHeader(final String name, final String value) {
getRequestHeaders().add(new NameValuePair(name, value));
@@ -284,7 +284,7 @@ public abstract class HttpTagSupport extends TagSupport {
/**
* Sets the current parameters on the url method ready for processing
*
- * @param method the {@link HttpMethod method} to configure
+ * @param method The {@link HttpMethod method} to configure
* @throws MalformedURLException Never thrown here but can be from a
subclass.
*/
protected void setParameters(final HttpMethod method) throws
MalformedURLException {
diff --git
a/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/MultipartPostTag.java
b/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/MultipartPostTag.java
index 3d5592a4..5dde5ba9 100644
---
a/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/MultipartPostTag.java
+++
b/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/MultipartPostTag.java
@@ -56,7 +56,7 @@ public class MultipartPostTag extends PostTag {
/**
* Add a part to the message
*
- * @param part the part
+ * @param part The part
*/
public void addPart(final Part part) {
_parts.add(part);
diff --git
a/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/Proxy.java
b/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/Proxy.java
index c6942331..271af9b7 100644
---
a/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/Proxy.java
+++
b/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/Proxy.java
@@ -43,8 +43,8 @@ public class Proxy {
/**
* Create a proxy given a host name and port number.
*
- * @param host the host name of the proxy to be used.
- * @param port the port to send proxied requests on.
+ * @param host The host name of the proxy to be used.
+ * @param port The port to send proxied requests on.
*/
public Proxy(final String host, final int port) {
setHost(host);
@@ -72,7 +72,7 @@ public class Proxy {
/**
* Setter for property host.
*
- * @param host the host name of the proxy to be used.
+ * @param host The host name of the proxy to be used.
*/
public void setHost(final String host) {
_host = host;
@@ -81,7 +81,7 @@ public class Proxy {
/**
* Setter for property port.
*
- * @param port the port to send proxied requests on.
+ * @param port The port to send proxied requests on.
*/
public void setPort(final int port) {
_port = port;
diff --git
a/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/PutTag.java
b/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/PutTag.java
index c9e176a8..18e3619c 100644
---
a/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/PutTag.java
+++
b/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/PutTag.java
@@ -37,8 +37,8 @@ public class PutTag extends HttpTagSupport {
/**
* Fail as PUT requests don't have parameters
*
- * @param name the parameter name
- * @param value the parameter value
+ * @param name The parameter name
+ * @param value The parameter value
*/
@Override
public void addParameter(final String name, final String value) {
diff --git
a/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/SessionTag.java
b/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/SessionTag.java
index f97a2991..a0faad84 100644
---
a/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/SessionTag.java
+++
b/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/SessionTag.java
@@ -196,7 +196,7 @@ public class SessionTag extends TagSupport {
/**
* Helper method for proxy {@code host} property
*
- * @param host the {@link #getProxy() proxy's} host property
+ * @param host The {@link #getProxy() proxy's} host property
*/
public void setProxyHost(final String host) {
getProxy().setHost(host);
@@ -205,7 +205,7 @@ public class SessionTag extends TagSupport {
/**
* Helper method for proxy {@code port} property
*
- * @param port the {@link #getProxy() proxy's} port property
+ * @param port The {@link #getProxy() proxy's} port property
*/
public void setProxyPort(final int port) {
getProxy().setPort(port);
diff --git
a/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/HttpContextTag.java
b/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/HttpContextTag.java
index 3b579fcc..ce94e7f8 100644
---
a/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/HttpContextTag.java
+++
b/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/HttpContextTag.java
@@ -55,7 +55,7 @@ public class HttpContextTag extends TagSupport {
/**
* Add an http handler to the context instance
*
- * @param httpHandler the handler to add
+ * @param httpHandler The handler to add
*/
public void addHandler(final HttpHandler httpHandler) {
_context.addHandler(httpHandler);
@@ -65,8 +65,8 @@ public class HttpContextTag extends TagSupport {
* Add a security constraint for the specified path specification
* to the context instance
*
- * @param pathSpec the path specification for the security constraint
- * @param sc the security constraint to add
+ * @param pathSpec The path specification for the security constraint
+ * @param sc The security constraint to add
*/
public void addSecurityConstraint(final String pathSpec, final
SecurityConstraint sc) {
_context.addSecurityConstraint(pathSpec, sc);
@@ -140,7 +140,7 @@ public class HttpContextTag extends TagSupport {
/**
* Add an authenticator to the context instance
*
- * @param authenticator the authenticator to add
+ * @param authenticator The authenticator to add
*/
public void setAuthenticator(final Authenticator authenticator)
{
diff --git
a/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/JellyResourceHttpHandler.java
b/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/JellyResourceHttpHandler.java
index b2b95e32..ee8f44b7 100644
---
a/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/JellyResourceHttpHandler.java
+++
b/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/JellyResourceHttpHandler.java
@@ -81,10 +81,10 @@ final class JellyResourceHttpHandler extends
AbstractHttpHandler {
/*
* handle an http request
*
- * @param pathInContext the path of the http request
- * @param pathParams the parameters (if any) of the http request
- * @param request the actual http request
- * @param response the place for any response
+ * @param pathInContext The path of the http request
+ * @param pathParams The parameters (if any) of the http request
+ * @param request The actual http request
+ * @param response The place for any response
* @throws HttpException when an error occurs
* @throws IOException when an error occurs
*/
@@ -132,8 +132,8 @@ final class JellyResourceHttpHandler extends
AbstractHttpHandler {
/*
* register this tag as the handler for the specified method
*
- * @param tag the tag to be registered
- * @param method the name of the http method which this tag processes
+ * @param tag The tag to be registered
+ * @param method The name of the http method which this tag processes
*/
public void registerTag(final Tag tag, final String method){
_tagMap.put(method.toLowerCase(), tag);
diff --git
a/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/JettyHttpServerTag.java
b/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/JettyHttpServerTag.java
index 59252b2b..1da95878 100644
---
a/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/JettyHttpServerTag.java
+++
b/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/JettyHttpServerTag.java
@@ -99,7 +99,7 @@ public class JettyHttpServerTag extends TagSupport {
/**
* Add an http context to the server instance
*
- * @param context the context to add
+ * @param context The context to add
*/
public void addContext(final HttpContext context) {
_server.addContext(context);
@@ -108,7 +108,7 @@ public class JettyHttpServerTag extends TagSupport {
/**
* Add an http listener to the server instance
*
- * @param listener the listener to add
+ * @param listener The listener to add
*/
public void addListener(final HttpListener listener) {
_server.addListener(listener);
@@ -117,7 +117,7 @@ public class JettyHttpServerTag extends TagSupport {
/**
* Add a user authentication realm to the server instance
*
- * @param realm the realm to add
+ * @param realm The realm to add
* @return The realm added
*/
public UserRealm addRealm(final UserRealm realm)
diff --git
a/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/SecurityHandlerTag.java
b/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/SecurityHandlerTag.java
index 6f2b73a4..03642890 100644
---
a/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/SecurityHandlerTag.java
+++
b/jelly-tags/jetty/src/main/java/org/apache/commons/jelly/tags/jetty/SecurityHandlerTag.java
@@ -158,8 +158,8 @@ public class SecurityHandlerTag extends TagSupport {
* Process a parsed XML node to setup the authenticator and realm
* for an http server
*
- * @param node the parsed XML starting node of the login configuration
- * @param httpContext the tag to add the authenticator and realm to
+ * @param node The parsed XML starting node of the login configuration
+ * @param httpContext The tag to add the authenticator and realm to
*/
protected void initLoginConfig(final XmlParser.Node node,
final HttpContextTag httpContext)
@@ -230,8 +230,8 @@ public class SecurityHandlerTag extends TagSupport {
* Process a parsed XML node to setup the security constraints
* for an http server
*
- * @param node the parsed XML starting node of the constraints
- * @param httpContext the tag to add the security constraint to
+ * @param node The parsed XML starting node of the constraints
+ * @param httpContext The tag to add the security constraint to
*/
protected void initSecurityConstraint(final XmlParser.Node node,
final HttpContextTag httpContext)
diff --git
a/jelly-tags/junit/src/main/java/org/apache/commons/jelly/tags/junit/AssertFileContainsTag.java
b/jelly-tags/junit/src/main/java/org/apache/commons/jelly/tags/junit/AssertFileContainsTag.java
index 86343b93..c6ae8df0 100644
---
a/jelly-tags/junit/src/main/java/org/apache/commons/jelly/tags/junit/AssertFileContainsTag.java
+++
b/jelly-tags/junit/src/main/java/org/apache/commons/jelly/tags/junit/AssertFileContainsTag.java
@@ -39,7 +39,7 @@ public class AssertFileContainsTag extends AssertTagSupport
/**
* Do the tag functionality: check the file exists.
- * @param output a place to write text output
+ * @param output A place to write text output
* @throws JellyTagException if the file doesn't exist.
*/
@Override
@@ -95,7 +95,7 @@ public class AssertFileContainsTag extends AssertTagSupport
/**
* The file to be tested. If this file exists, the test will pass.
- * @param aFile the file to test.
+ * @param aFile The file to test.
*/
public void setFile(final File aFile)
{
diff --git
a/jelly-tags/junit/src/main/java/org/apache/commons/jelly/tags/junit/AssertFileExistsTag.java
b/jelly-tags/junit/src/main/java/org/apache/commons/jelly/tags/junit/AssertFileExistsTag.java
index 03753d77..c34eacb8 100644
---
a/jelly-tags/junit/src/main/java/org/apache/commons/jelly/tags/junit/AssertFileExistsTag.java
+++
b/jelly-tags/junit/src/main/java/org/apache/commons/jelly/tags/junit/AssertFileExistsTag.java
@@ -33,7 +33,7 @@ public class AssertFileExistsTag extends AssertTagSupport
/**
* Do the tag functionality: check the file exists.
- * @param output a place to write text output
+ * @param output A place to write text output
* @throws JellyTagException if the file doesn't exist.
*/
@Override
@@ -55,7 +55,7 @@ public class AssertFileExistsTag extends AssertTagSupport
/**
* The file to be tested. If this file exists, the test will pass.
- * @param aFile the file to test.
+ * @param aFile The file to test.
*/
public void setFile(final File aFile)
{
diff --git
a/jelly-tags/junit/src/main/java/org/apache/commons/jelly/tags/junit/AssertFileNotFoundTag.java
b/jelly-tags/junit/src/main/java/org/apache/commons/jelly/tags/junit/AssertFileNotFoundTag.java
index 7f115cc7..382456dd 100644
---
a/jelly-tags/junit/src/main/java/org/apache/commons/jelly/tags/junit/AssertFileNotFoundTag.java
+++
b/jelly-tags/junit/src/main/java/org/apache/commons/jelly/tags/junit/AssertFileNotFoundTag.java
@@ -33,7 +33,7 @@ public class AssertFileNotFoundTag extends AssertTagSupport
/**
* Do the tag functionality: check the file can't be found.
- * @param output a place to write text output
+ * @param output A place to write text output
* @throws JellyTagException if the file exists.
*/
@Override
@@ -55,7 +55,7 @@ public class AssertFileNotFoundTag extends AssertTagSupport
/**
* The file to be tested. If this file exists, the test will pass.
- * @param aFile the file to test.
+ * @param aFile The file to test.
*/
public void setFile(final File aFile)
{
diff --git
a/jelly-tags/soap/src/main/java/org/apache/commons/jelly/tags/soap/StringInputStream.java
b/jelly-tags/soap/src/main/java/org/apache/commons/jelly/tags/soap/StringInputStream.java
index 988c772f..aacc005c 100644
---
a/jelly-tags/soap/src/main/java/org/apache/commons/jelly/tags/soap/StringInputStream.java
+++
b/jelly-tags/soap/src/main/java/org/apache/commons/jelly/tags/soap/StringInputStream.java
@@ -57,7 +57,7 @@ public class StringInputStream
/**
* Marks the read limit of the StringReader.
*
- * @param limit the maximum limit of bytes that can be read before the
+ * @param limit The maximum limit of bytes that can be read before the
* mark position becomes invalid
*/
@Override
diff --git
a/jelly-tags/sql/src/main/java/javax/servlet/jsp/jstl/sql/ResultImpl.java
b/jelly-tags/sql/src/main/java/javax/servlet/jsp/jstl/sql/ResultImpl.java
index 30b7d720..cd6b7c20 100644
--- a/jelly-tags/sql/src/main/java/javax/servlet/jsp/jstl/sql/ResultImpl.java
+++ b/jelly-tags/sql/src/main/java/javax/servlet/jsp/jstl/sql/ResultImpl.java
@@ -44,7 +44,7 @@ final class ResultImpl implements Result {
* This constructor reads the ResultSet and saves a cached
* copy.
*
- * @param rs an open {@code ResultSet}, positioned before the first
+ * @param rs An open {@code ResultSet}, positioned before the first
* row
* @param startRow beginning row to be cached
* @param maxRows query maximum rows limit
diff --git
a/jelly-tags/sql/src/main/java/javax/servlet/jsp/jstl/sql/ResultSupport.java
b/jelly-tags/sql/src/main/java/javax/servlet/jsp/jstl/sql/ResultSupport.java
index 0037af8d..c4fa1c90 100644
--- a/jelly-tags/sql/src/main/java/javax/servlet/jsp/jstl/sql/ResultSupport.java
+++ b/jelly-tags/sql/src/main/java/javax/servlet/jsp/jstl/sql/ResultSupport.java
@@ -30,7 +30,7 @@ public class ResultSupport {
/**
* Returns an array of Row objects.
*
- * @param resultSet the ResultSet object
+ * @param resultSet The ResultSet object
* @return The {@code Result} object of the result
*/
public static Result toResult(final ResultSet resultSet) {
@@ -44,8 +44,8 @@ public class ResultSupport {
/**
* Returns the Result object of the cached ResultSet limited by maxRows
*
- * @param resultSet the ResultSet object
- * @param maxRows the maximum number of rows
+ * @param resultSet The ResultSet object
+ * @param maxRows The maximum number of rows
* @return The {@code Result} object of the result limited by maxRows
*/
public static Result toResult(final ResultSet resultSet, final int
maxRows) {
diff --git
a/jelly-tags/sql/src/main/java/org/apache/commons/jelly/tags/sql/ResultImpl.java
b/jelly-tags/sql/src/main/java/org/apache/commons/jelly/tags/sql/ResultImpl.java
index 970f5fe4..2ed70d88 100644
---
a/jelly-tags/sql/src/main/java/org/apache/commons/jelly/tags/sql/ResultImpl.java
+++
b/jelly-tags/sql/src/main/java/org/apache/commons/jelly/tags/sql/ResultImpl.java
@@ -96,7 +96,7 @@ public class ResultImpl implements Result {
* This constructor reads the ResultSet and saves a cached
* copy.
*
- * @param rs an open {@code ResultSet}, positioned before the first
+ * @param rs An open {@code ResultSet}, positioned before the first
* row
* @param startRow beginning row to be cached
* @param maxRows query maximum rows limit
diff --git
a/jelly-tags/swing/src/main/java/org/apache/commons/jelly/tags/swing/GbcTag.java
b/jelly-tags/swing/src/main/java/org/apache/commons/jelly/tags/swing/GbcTag.java
index aa81ecbf..d736643a 100644
---
a/jelly-tags/swing/src/main/java/org/apache/commons/jelly/tags/swing/GbcTag.java
+++
b/jelly-tags/swing/src/main/java/org/apache/commons/jelly/tags/swing/GbcTag.java
@@ -73,8 +73,8 @@ public class GbcTag extends UseBeanTag implements
ContainerTag {
* <p>
* TODO constraints looks like it's ignored
* </p>
- * @param component the child to add
- * @param constraints the constraints to use
+ * @param component The child to add
+ * @param constraints The constraints to use
*/
@Override
public void addChild(final Component component, final Object constraints)
throws JellyTagException {
@@ -90,7 +90,7 @@ public class GbcTag extends UseBeanTag implements
ContainerTag {
/**
* A class may be specified otherwise the Factory will be used.
- * @param classObject the object to be converted
+ * @param classObject The object to be converted
*/
@Override
protected Class convertToClass(final Object classObject)
diff --git
a/jelly-tags/swing/src/test/java/org/apache/commons/jelly/swing/TestSwingTags.java
b/jelly-tags/swing/src/test/java/org/apache/commons/jelly/swing/TestSwingTags.java
index 47d27e52..752dcbc9 100644
---
a/jelly-tags/swing/src/test/java/org/apache/commons/jelly/swing/TestSwingTags.java
+++
b/jelly-tags/swing/src/test/java/org/apache/commons/jelly/swing/TestSwingTags.java
@@ -47,8 +47,8 @@ public class TestSwingTags extends BaseJellyTest {
/** Searches a container for a component with a given name. Searches only
* the immediate container, not child containers.
- * @param container the Container to search in
- * @param name the name to look for
+ * @param container The Container to search in
+ * @param name The name to look for
* @return The first component with the given name
* @throws Exception if the name isn't found
*/
diff --git
a/jelly-tags/swt/src/main/java/org/apache/commons/jelly/tags/swt/ColorTag.java
b/jelly-tags/swt/src/main/java/org/apache/commons/jelly/tags/swt/ColorTag.java
index 5d94266f..52e107f5 100644
---
a/jelly-tags/swt/src/main/java/org/apache/commons/jelly/tags/swt/ColorTag.java
+++
b/jelly-tags/swt/src/main/java/org/apache/commons/jelly/tags/swt/ColorTag.java
@@ -114,7 +114,7 @@ public class ColorTag extends TagSupport {
/**
* Sets the variable name
*
- * @param var the variable name of this {@link Color} instance
+ * @param var The variable name of this {@link Color} instance
*/
public void setVar(final String var) {
this.var = var;
diff --git
a/jelly-tags/swt/src/main/java/org/apache/commons/jelly/tags/swt/FontTag.java
b/jelly-tags/swt/src/main/java/org/apache/commons/jelly/tags/swt/FontTag.java
index f6bb91c8..4bb79b34 100644
---
a/jelly-tags/swt/src/main/java/org/apache/commons/jelly/tags/swt/FontTag.java
+++
b/jelly-tags/swt/src/main/java/org/apache/commons/jelly/tags/swt/FontTag.java
@@ -155,7 +155,7 @@ public class FontTag extends TagSupport {
/**
* Sets the style of this {@link Font} (eg. bold, normal, italics)
*
- * @param style the style of this {@link Font}
+ * @param style The style of this {@link Font}
*/
public void setStyle(final String style) {
this.style = style;
@@ -176,7 +176,7 @@ public class FontTag extends TagSupport {
/**
* Sets the variable name
*
- * @param var the variable name of this {@link Font} instance
+ * @param var The variable name of this {@link Font} instance
*/
public void setVar(final String var) {
this.var = var;
diff --git
a/jelly-tags/swt/src/main/java/org/apache/commons/jelly/tags/swt/GCTag.java
b/jelly-tags/swt/src/main/java/org/apache/commons/jelly/tags/swt/GCTag.java
index 997419e5..24bb7e18 100644
--- a/jelly-tags/swt/src/main/java/org/apache/commons/jelly/tags/swt/GCTag.java
+++ b/jelly-tags/swt/src/main/java/org/apache/commons/jelly/tags/swt/GCTag.java
@@ -85,7 +85,7 @@ public class GCTag extends TagSupport {
/**
* Sets the {@link Drawable} name for this {@link GC}.
*
- * @param drawable a {@link GC} {@link Drawable}
+ * @param drawable A {@link GC} {@link Drawable}
*/
public void setDrawable(final Drawable drawable) {
this.drawable = drawable;
@@ -97,7 +97,7 @@ public class GCTag extends TagSupport {
/**
* Sets the variable name.
*
- * @param var the variable name of this {@link GC} instance
+ * @param var The variable name of this {@link GC} instance
*/
public void setVar(final String var) {
this.var = var;
diff --git
a/jelly-tags/swt/src/main/java/org/apache/commons/jelly/tags/swt/LayoutTagSupport.java
b/jelly-tags/swt/src/main/java/org/apache/commons/jelly/tags/swt/LayoutTagSupport.java
index 328f62a6..ddddf8db 100644
---
a/jelly-tags/swt/src/main/java/org/apache/commons/jelly/tags/swt/LayoutTagSupport.java
+++
b/jelly-tags/swt/src/main/java/org/apache/commons/jelly/tags/swt/LayoutTagSupport.java
@@ -50,7 +50,7 @@ public abstract class LayoutTagSupport extends UseBeanTag {
*
* @param bean is the bean on which the property is to be set
* @param name is the name of the property
- * @param value the value of the property
+ * @param value The value of the property
* @return The new value
*/
protected Object convertValue(final Object bean, final String name, final
Object value)
diff --git
a/jelly-tags/swt/src/main/java/org/apache/commons/jelly/tags/swt/WidgetTag.java
b/jelly-tags/swt/src/main/java/org/apache/commons/jelly/tags/swt/WidgetTag.java
index cca054d6..58d1f27a 100644
---
a/jelly-tags/swt/src/main/java/org/apache/commons/jelly/tags/swt/WidgetTag.java
+++
b/jelly-tags/swt/src/main/java/org/apache/commons/jelly/tags/swt/WidgetTag.java
@@ -90,7 +90,7 @@ public class WidgetTag extends UseBeanTag {
*
* @param theClass is the type of widget to create
* @param parent is the parent widget
- * @param style the SWT style code
+ * @param style The SWT style code
* @return The new Widget
*/
protected Object createWidget(final Class theClass, final Widget parent,
final int style)
diff --git
a/jelly-tags/util/src/main/java/org/apache/commons/jelly/tags/util/AvailableTag.java
b/jelly-tags/util/src/main/java/org/apache/commons/jelly/tags/util/AvailableTag.java
index 92aae4ef..414299a9 100644
---
a/jelly-tags/util/src/main/java/org/apache/commons/jelly/tags/util/AvailableTag.java
+++
b/jelly-tags/util/src/main/java/org/apache/commons/jelly/tags/util/AvailableTag.java
@@ -89,7 +89,7 @@ public class AvailableTag extends TagSupport {
/**
* Sets the file to use to test whether it exists or not.
- * @param file the file to test for
+ * @param file The file to test for
*/
public void setFile(final File file) {
this.file = file;
@@ -100,7 +100,7 @@ public class AvailableTag extends TagSupport {
* The URI can be a full file based URL or a relative URI
* or an absolute URI from the root context.
*
- * @param uri the URI of the file to test
+ * @param uri The URI of the file to test
*/
public void setUri(final String uri) {
this.uri = uri;
diff --git
a/jelly-tags/util/src/main/java/org/apache/commons/jelly/tags/util/SortTag.java
b/jelly-tags/util/src/main/java/org/apache/commons/jelly/tags/util/SortTag.java
index 45504bbd..4f54bc2b 100644
---
a/jelly-tags/util/src/main/java/org/apache/commons/jelly/tags/util/SortTag.java
+++
b/jelly-tags/util/src/main/java/org/apache/commons/jelly/tags/util/SortTag.java
@@ -76,7 +76,7 @@ public class SortTag extends TagSupport {
/**
* The variable to hold the sorted collection.
- * @param newVar the name of the variable.
+ * @param newVar The name of the variable.
*/
public void setVar(final String newVar) {
var = newVar;
diff --git
a/jelly-tags/xml/src/test/java/org/apache/commons/jelly/tags/xml/TestXMLTags.java
b/jelly-tags/xml/src/test/java/org/apache/commons/jelly/tags/xml/TestXMLTags.java
index 518193ae..514e2e60 100644
---
a/jelly-tags/xml/src/test/java/org/apache/commons/jelly/tags/xml/TestXMLTags.java
+++
b/jelly-tags/xml/src/test/java/org/apache/commons/jelly/tags/xml/TestXMLTags.java
@@ -64,9 +64,9 @@ public class TestXMLTags extends TestCase {
* Checks an XML fragment with a namespace expression. Namespaces are
* generated in arbitrary order. Therefore, they cannot be checked
* directly.
- * @param s the fragment to be checked
- * @param pre the part before the namespace expression
- * @param post the part after the namespace expression
+ * @param s The fragment to be checked
+ * @param pre The part before the namespace expression
+ * @param post The part after the namespace expression
* @return The extracted namespace expression
*/
private static String checkNamespaceFragment(final String s, final String
pre, final String post) {
@@ -79,10 +79,10 @@ public class TestXMLTags extends TestCase {
/**
* Tries to find a fragment with the specified namespaces in the given
* string.
- * @param s the string
- * @param pre the part before the namespace expression
- * @param post the part after the namespace expression
- * @param ns the namespaces to be matched in the fragment
+ * @param s The string
+ * @param pre The part before the namespace expression
+ * @param post The part after the namespace expression
+ * @param ns The namespaces to be matched in the fragment
*/
private static void findNamespaceFragment(final String s, final String
pre, final String post,
final String... ns) {
@@ -102,9 +102,9 @@ public class TestXMLTags extends TestCase {
/**
* Returns a matcher for a namespace XML fragment.
- * @param s the fragment to be checked
- * @param pre the part before the namespace expression
- * @param post the part after the namespace expression
+ * @param s The fragment to be checked
+ * @param pre The part before the namespace expression
+ * @param post The part after the namespace expression
* @return The matcher
*/
private static Matcher matcherForNamespaceFragment(final String s, final
String pre, final String post) {