This is an automated email from the ASF dual-hosted git repository.

ggregory 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 cb36e38e Javadoc
cb36e38e is described below

commit cb36e38ea045e36b62f89d81786eb2a8931a8de8
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Thu Dec 14 10:29:35 2023 -0500

    Javadoc
---
 .../apache/commons/jelly/DynaBeanTagSupport.java   |  2 +-
 .../org/apache/commons/jelly/JellyException.java   | 10 ++++-----
 .../java/org/apache/commons/jelly/TagSupport.java  |  6 +++---
 .../java/org/apache/commons/jelly/XMLOutput.java   |  2 +-
 .../org/apache/commons/jelly/impl/Attribute.java   |  4 ++--
 .../apache/commons/jelly/impl/DynamicBeanTag.java  | 12 +++++------
 .../commons/jelly/impl/DynamicDynaBeanTag.java     |  8 ++++----
 .../commons/jelly/impl/ExpressionScript.java       |  2 +-
 .../org/apache/commons/jelly/impl/TagScript.java   | 24 +++++++++++-----------
 .../org/apache/commons/jelly/impl/TextScript.java  |  2 +-
 .../org/apache/commons/jelly/parser/XMLParser.java |  2 +-
 .../commons/jelly/tags/core/InvokeStaticTag.java   |  8 ++++----
 .../apache/commons/jelly/tags/core/InvokeTag.java  |  8 ++++----
 .../org/apache/commons/jelly/tags/core/NewTag.java |  4 ++--
 .../apache/commons/jelly/tags/core/ThreadTag.java  |  2 +-
 .../apache/commons/jelly/tags/core/UseBeanTag.java |  4 ++--
 .../tags/junit/JellyAssertionFailedError.java      | 10 ++++-----
 .../apache/commons/jelly/tags/junit/SuiteTag.java  |  6 +++---
 .../commons/jelly/tags/ant/FileScannerTag.java     |  2 +-
 .../commons/jelly/tags/bean/BeanPropertyTag.java   |  2 +-
 .../apache/commons/jelly/tags/bean/BeanTag.java    |  4 ++--
 .../apache/commons/jelly/tags/bean/BeandefTag.java | 10 ++++-----
 .../commons/jelly/tags/betwixt/ParseTag.java       |  2 +-
 .../commons/jelly/tags/define/AttributeTag.java    |  2 +-
 .../apache/commons/jelly/tags/define/BeanTag.java  | 10 ++++-----
 .../commons/jelly/tags/define/DynaBeanTag.java     |  8 ++++----
 .../commons/jelly/tags/define/JellyBeanTag.java    |  2 +-
 .../apache/commons/jelly/tags/http/DeleteTag.java  |  2 +-
 .../org/apache/commons/jelly/tags/http/GetTag.java |  2 +-
 .../apache/commons/jelly/tags/http/HeadTag.java    |  2 +-
 .../commons/jelly/tags/http/HttpTagSupport.java    |  2 +-
 .../commons/jelly/tags/http/MultipartPostTag.java  |  2 +-
 .../apache/commons/jelly/tags/http/OptionsTag.java |  2 +-
 .../apache/commons/jelly/tags/http/PostTag.java    |  2 +-
 .../org/apache/commons/jelly/tags/http/Proxy.java  |  6 +++---
 .../org/apache/commons/jelly/tags/http/PutTag.java |  2 +-
 .../apache/commons/jelly/tags/http/SessionTag.java |  2 +-
 .../commons/jelly/tags/jetty/HttpContextTag.java   |  2 +-
 .../jelly/tags/jetty/JettyHttpServerTag.java       |  4 ++--
 .../commons/jelly/tags/jms/StopwatchTag.java       |  4 ++--
 .../commons/jelly/tags/jms/SubscribeTag.java       |  2 +-
 .../jelly/tags/junit/AssertFileContainsTag.java    |  2 +-
 .../jelly/tags/junit/AssertFileExistsTag.java      |  2 +-
 .../jelly/tags/junit/AssertFileNotFoundTag.java    |  2 +-
 .../commons/jelly/tags/junit/AssertTagSupport.java |  2 +-
 .../tags/junit/JellyAssertionFailedError.java      | 10 ++++-----
 .../apache/commons/jelly/tags/junit/SuiteTag.java  |  6 +++---
 .../apache/commons/jelly/tags/ojb/StoreTag.java    |  2 +-
 .../commons/jelly/tags/swing/ComponentTag.java     |  2 +-
 .../apache/commons/jelly/tags/swing/FontTag.java   |  2 +-
 .../commons/jelly/tags/threads/ThreadTag.java      |  2 +-
 .../apache/commons/jelly/tags/util/ReplaceTag.java |  8 ++++----
 .../apache/commons/jelly/tags/util/SortTag.java    |  2 +-
 .../commons/jelly/tags/util/TokenizeTag.java       |  2 +-
 .../commons/jelly/tags/validate/VerifierTag.java   |  2 +-
 .../commons/jelly/tags/xml/AttributeTag.java       |  2 +-
 .../apache/commons/jelly/tags/xml/ParamTag.java    |  4 ++--
 .../commons/jelly/tags/xml/TransformTag.java       |  2 +-
 58 files changed, 124 insertions(+), 124 deletions(-)

diff --git 
a/core/src/main/java/org/apache/commons/jelly/DynaBeanTagSupport.java 
b/core/src/main/java/org/apache/commons/jelly/DynaBeanTagSupport.java
index 713a227d..e0942c8e 100644
--- a/core/src/main/java/org/apache/commons/jelly/DynaBeanTagSupport.java
+++ b/core/src/main/java/org/apache/commons/jelly/DynaBeanTagSupport.java
@@ -31,7 +31,7 @@ import org.apache.commons.beanutils.DynaProperty;
 
 public abstract class DynaBeanTagSupport extends DynaTagSupport {
 
-    /** the DynaBean which is used to store the attributes of this tag. */
+    /** The DynaBean which is used to store the attributes of this tag. */
     private DynaBean dynaBean;
 
     public DynaBeanTagSupport() {
diff --git a/core/src/main/java/org/apache/commons/jelly/JellyException.java 
b/core/src/main/java/org/apache/commons/jelly/JellyException.java
index 3fd5bc50..be71c9b0 100644
--- a/core/src/main/java/org/apache/commons/jelly/JellyException.java
+++ b/core/src/main/java/org/apache/commons/jelly/JellyException.java
@@ -28,19 +28,19 @@ import java.io.PrintWriter;
 
 public class JellyException extends Exception implements LocationAware {
     
-    /** the underlying cause of the exception */
+    /** The underlying cause of the exception */
     private Throwable cause;
 
-    /** the Jelly file which caused the problem */
+    /** The Jelly file which caused the problem */
     private String fileName;
 
-    /** the tag name which caused the problem */
+    /** The tag name which caused the problem */
     private String elementName;
 
-    /** the line number in the script of the error */
+    /** The line number in the script of the error */
     private int lineNumber = -1;
     
-    /** the column number in the script of the error */
+    /** The column number in the script of the error */
     private int columnNumber = -1;
     
     public JellyException() {
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 ec13adf6..8eda54e0 100644
--- a/core/src/main/java/org/apache/commons/jelly/TagSupport.java
+++ b/core/src/main/java/org/apache/commons/jelly/TagSupport.java
@@ -31,13 +31,13 @@ import org.apache.commons.jelly.util.TagUtils;
 
 public abstract class TagSupport implements Tag {
 
-    /** the parent of this tag */
+    /** The parent of this tag */
     protected Tag parent;
     
-    /** the TagLibrary which defines this tag */
+    /** The TagLibrary which defines this tag */
     protected TagLibrary tagLibrary;
 
-    /** the body of the tag */
+    /** The body of the tag */
     protected Script body;
     /** The current context */
 
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 9549c672..e64d794e 100644
--- a/core/src/main/java/org/apache/commons/jelly/XMLOutput.java
+++ b/core/src/main/java/org/apache/commons/jelly/XMLOutput.java
@@ -59,7 +59,7 @@ public class XMLOutput implements ContentHandler, 
LexicalHandler {
     /** The Log to which logging calls will be made. */
     private static final Log log = LogFactory.getLog(XMLOutput.class);
 
-    /** the default for escaping of text. */
+    /** The default for escaping of text. */
     private static final boolean DEFAULT_ESCAPE_TEXT = false;
 
     /** The SAX ContentHandler that output goes to. */
diff --git a/core/src/main/java/org/apache/commons/jelly/impl/Attribute.java 
b/core/src/main/java/org/apache/commons/jelly/impl/Attribute.java
index 6597ccab..dbd699fe 100644
--- a/core/src/main/java/org/apache/commons/jelly/impl/Attribute.java
+++ b/core/src/main/java/org/apache/commons/jelly/impl/Attribute.java
@@ -26,10 +26,10 @@ import org.apache.commons.jelly.expression.Expression;
  */
 public class Attribute {
 
-    /** the name of the attribute */
+    /** The name of the attribute */
     private String name;
 
-    /** the default value expression */
+    /** The default value expression */
     private Expression defaultValue;
 
     /** whether this attribute is required */
diff --git 
a/core/src/main/java/org/apache/commons/jelly/impl/DynamicBeanTag.java 
b/core/src/main/java/org/apache/commons/jelly/impl/DynamicBeanTag.java
index a375d7b1..1f5ef7f3 100644
--- a/core/src/main/java/org/apache/commons/jelly/impl/DynamicBeanTag.java
+++ b/core/src/main/java/org/apache/commons/jelly/impl/DynamicBeanTag.java
@@ -53,13 +53,13 @@ public class DynamicBeanTag extends DynaBeanTagSupport 
implements BeanSource {
     /** Empty arguments for Method.invoke() */
     private static final Object[] emptyArgs = {};
 
-    /** the bean class */
+    /** The bean class */
     private Class beanClass;
 
-    /** the current bean instance */
+    /** The current bean instance */
     private Object bean;
 
-    /** the method to invoke on the bean */
+    /** The method to invoke on the bean */
     private Method method;
 
     /**
@@ -68,13 +68,13 @@ public class DynamicBeanTag extends DynaBeanTagSupport 
implements BeanSource {
      */
     private String variableNameAttribute;
 
-    /** the current variable name that the bean should be exported as */
+    /** The current variable name that the bean should be exported as */
     private String var;
 
-    /** the set of attribute names we've already set */
+    /** The set of attribute names we've already set */
     private Set setAttributesSet = new HashSet();
 
-    /** the attribute definitions */
+    /** The attribute definitions */
     private Map attributes;
 
     /**
diff --git 
a/core/src/main/java/org/apache/commons/jelly/impl/DynamicDynaBeanTag.java 
b/core/src/main/java/org/apache/commons/jelly/impl/DynamicDynaBeanTag.java
index c269f08a..2aa991db 100644
--- a/core/src/main/java/org/apache/commons/jelly/impl/DynamicDynaBeanTag.java
+++ b/core/src/main/java/org/apache/commons/jelly/impl/DynamicDynaBeanTag.java
@@ -38,7 +38,7 @@ import org.apache.commons.jelly.expression.Expression;
  */
 public class DynamicDynaBeanTag extends DynaBeanTagSupport implements 
BeanSource {
 
-    /** the bean class */
+    /** The bean class */
     private DynaClass beanClass;
 
     /**
@@ -47,13 +47,13 @@ public class DynamicDynaBeanTag extends DynaBeanTagSupport 
implements BeanSource
      */
     private String variableNameAttribute;
 
-    /** the current variable name that the bean should be exported as */
+    /** The current variable name that the bean should be exported as */
     private String var;
 
-    /** the set of attribute names we've already set */
+    /** The set of attribute names we've already set */
     private Set setAttributesSet = new HashSet();
 
-    /** the attribute definitions */
+    /** The attribute definitions */
     private Map attributes;
 
     public DynamicDynaBeanTag(DynaClass beanClass, Map attributes, String 
variableNameAttribute) {
diff --git 
a/core/src/main/java/org/apache/commons/jelly/impl/ExpressionScript.java 
b/core/src/main/java/org/apache/commons/jelly/impl/ExpressionScript.java
index c1440fab..a3b02689 100644
--- a/core/src/main/java/org/apache/commons/jelly/impl/ExpressionScript.java
+++ b/core/src/main/java/org/apache/commons/jelly/impl/ExpressionScript.java
@@ -30,7 +30,7 @@ import org.xml.sax.SAXException;
  */
 public class ExpressionScript implements Script {
 
-    /** the expression evaluated as a String and output by this script */
+    /** The expression evaluated as a String and output by this script */
     private Expression expression;
 
     public ExpressionScript() {
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 b5921dae..5fc818bb 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
@@ -65,7 +65,7 @@ public class TagScript implements Script {
     /** The attribute expressions that are created */
     protected Map attributes = new Hashtable();
 
-    /** the optional namespaces Map of prefix to URI of this single Tag */
+    /** The optional namespaces Map of prefix to URI of this single Tag */
     private Map tagNamespacesMap;
 
     /**
@@ -75,37 +75,37 @@ public class TagScript implements Script {
      */
     private Map namespaceContext;
 
-    /** the Jelly file which caused the problem */
+    /** The Jelly file which caused the problem */
     private String fileName;
 
-    /** the qualified element name which caused the problem */
+    /** The qualified element name which caused the problem */
     private String elementName;
 
-    /** the local (non-namespaced) tag name */
+    /** The local (non-namespaced) tag name */
     private String localName;
 
-    /** the line number of the tag */
+    /** The line number of the tag */
     private int lineNumber = -1;
 
-    /** the column number of the tag */
+    /** The column number of the tag */
     private int columnNumber = -1;
     
-    /** the TagLibrary that we belong to */
+    /** The TagLibrary that we belong to */
     private TagLibrary tagLibrary;
 
-    /** the factory of Tag instances */
+    /** The factory of Tag instances */
     private TagFactory tagFactory;
 
-    /** the body script used for this tag */
+    /** The body script used for this tag */
     private Script tagBody;
 
-    /** the parent TagScript */
+    /** The parent TagScript */
     private TagScript parent;
 
-    /** the SAX attributes */
+    /** The SAX attributes */
     private Attributes saxAttributes;
     
-    /** the url of the script when parsed */
+    /** The url of the script when parsed */
     private URL scriptURL = null;
     
     /** A synchronized WeakHashMap from the current Thread (key) to a Tag 
object (value).
diff --git a/core/src/main/java/org/apache/commons/jelly/impl/TextScript.java 
b/core/src/main/java/org/apache/commons/jelly/impl/TextScript.java
index 81f09607..7d47650b 100644
--- a/core/src/main/java/org/apache/commons/jelly/impl/TextScript.java
+++ b/core/src/main/java/org/apache/commons/jelly/impl/TextScript.java
@@ -28,7 +28,7 @@ import org.xml.sax.SAXException;
   */
 public class TextScript implements Script {
 
-    /** the text output by this script */
+    /** The text output by this script */
     private String text;
 
     public TextScript() {
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 748e68e1..535b79da 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
@@ -79,7 +79,7 @@ public class XMLParser extends DefaultHandler {
     /** JellyContext which is used to locate tag libraries*/
     private JellyContext context = new JellyContext();
 
-    /** the expression factory used to evaluate tag attributes */
+    /** The expression factory used to evaluate tag attributes */
     private ExpressionFactory expressionFactory;
 
     /** The current script block */
diff --git 
a/core/src/main/java/org/apache/commons/jelly/tags/core/InvokeStaticTag.java 
b/core/src/main/java/org/apache/commons/jelly/tags/core/InvokeStaticTag.java
index b9f47b66..ff444bac 100644
--- a/core/src/main/java/org/apache/commons/jelly/tags/core/InvokeStaticTag.java
+++ b/core/src/main/java/org/apache/commons/jelly/tags/core/InvokeStaticTag.java
@@ -47,16 +47,16 @@ import org.apache.commons.jelly.util.ClassLoaderUtils;
   */
 public class InvokeStaticTag extends TagSupport implements ArgTagParent {
 
-    /** the variable exported */
+    /** The variable exported */
     private String var;
 
-    /** the variable where the method's exception is exported */
+    /** The variable where the method's exception is exported */
     private String exceptionVar;
 
-    /** the method to invoke */
+    /** The method to invoke */
     private String methodName;
 
-    /** the object to invoke the method on */
+    /** The object to invoke the method on */
     private String className;
 
     private List paramTypes = new ArrayList();
diff --git 
a/core/src/main/java/org/apache/commons/jelly/tags/core/InvokeTag.java 
b/core/src/main/java/org/apache/commons/jelly/tags/core/InvokeTag.java
index 94df8cad..580bf8e4 100644
--- a/core/src/main/java/org/apache/commons/jelly/tags/core/InvokeTag.java
+++ b/core/src/main/java/org/apache/commons/jelly/tags/core/InvokeTag.java
@@ -34,16 +34,16 @@ import org.apache.commons.jelly.XMLOutput;
   */
 public class InvokeTag extends TagSupport implements ArgTagParent {
 
-    /** the variable exported */
+    /** The variable exported */
     private String var;
 
-    /** the variable where the method's exception is exported */
+    /** The variable where the method's exception is exported */
     private String exceptionVar;
 
-    /** the method to invoke */
+    /** The method to invoke */
     private String methodName;
 
-    /** the object to invoke the method on */
+    /** The object to invoke the method on */
     private Object onInstance;
 
     private List paramTypes = new ArrayList();
diff --git a/core/src/main/java/org/apache/commons/jelly/tags/core/NewTag.java 
b/core/src/main/java/org/apache/commons/jelly/tags/core/NewTag.java
index 790dd308..97d42a86 100644
--- a/core/src/main/java/org/apache/commons/jelly/tags/core/NewTag.java
+++ b/core/src/main/java/org/apache/commons/jelly/tags/core/NewTag.java
@@ -31,10 +31,10 @@ import org.apache.commons.jelly.XMLOutput;
   */
 public class NewTag extends BaseClassLoaderTag implements ArgTagParent {
 
-    /** the variable exported */
+    /** The variable exported */
     private String var;
 
-    /** the class name of the object to instantiate */
+    /** The class name of the object to instantiate */
     private String className;
 
     private List paramTypes = new ArrayList();
diff --git 
a/core/src/main/java/org/apache/commons/jelly/tags/core/ThreadTag.java 
b/core/src/main/java/org/apache/commons/jelly/tags/core/ThreadTag.java
index 71c980ab..97ca9248 100644
--- a/core/src/main/java/org/apache/commons/jelly/tags/core/ThreadTag.java
+++ b/core/src/main/java/org/apache/commons/jelly/tags/core/ThreadTag.java
@@ -34,7 +34,7 @@ import org.apache.commons.logging.LogFactory;
 public class ThreadTag extends TagSupport  {
     /** Thread Name */
     private String name = null;
-    /** the destination of output */
+    /** The destination of output */
     private XMLOutput xmlOutput;
     /** Should we close the underlying output */
     private boolean closeOutput;
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 1660e6a7..199104a9 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
@@ -50,10 +50,10 @@ import org.apache.commons.jelly.util.ClassLoaderUtils;
  */
 public class UseBeanTag extends MapTagSupport implements BeanSource {
 
-    /** the current bean instance */
+    /** The current bean instance */
     private Object bean;
 
-    /** the default class to use if no Class is specified */
+    /** The default class to use if no Class is specified */
     private Class defaultClass;
 
     /**
diff --git 
a/core/src/test/java/org/apache/commons/jelly/tags/junit/JellyAssertionFailedError.java
 
b/core/src/test/java/org/apache/commons/jelly/tags/junit/JellyAssertionFailedError.java
index d8d32e62..1d4d3314 100644
--- 
a/core/src/test/java/org/apache/commons/jelly/tags/junit/JellyAssertionFailedError.java
+++ 
b/core/src/test/java/org/apache/commons/jelly/tags/junit/JellyAssertionFailedError.java
@@ -34,19 +34,19 @@ import junit.framework.AssertionFailedError;
 
 public class JellyAssertionFailedError extends AssertionFailedError implements 
LocationAware {
 
-    /** the underlying cause of the exception */
+    /** The underlying cause of the exception */
     private Throwable cause;
 
-    /** the Jelly file which caused the problem */
+    /** The Jelly file which caused the problem */
     private String fileName;
 
-    /** the tag name which caused the problem */
+    /** The tag name which caused the problem */
     private String elementName;
 
-    /** the line number in the script of the error */
+    /** The line number in the script of the error */
     private int lineNumber = -1;
 
-    /** the column number in the script of the error */
+    /** The column number in the script of the error */
     private int columnNumber = -1;
 
     public JellyAssertionFailedError() {
diff --git 
a/core/src/test/java/org/apache/commons/jelly/tags/junit/SuiteTag.java 
b/core/src/test/java/org/apache/commons/jelly/tags/junit/SuiteTag.java
index 1811e409..a6535deb 100644
--- a/core/src/test/java/org/apache/commons/jelly/tags/junit/SuiteTag.java
+++ b/core/src/test/java/org/apache/commons/jelly/tags/junit/SuiteTag.java
@@ -31,13 +31,13 @@ import junit.framework.TestSuite;
  */
 public class SuiteTag extends TagSupport {
 
-    /** the test suite this tag created */
+    /** The test suite this tag created */
     private TestSuite suite;
 
-    /** the name of the variable of the test suite */
+    /** The name of the variable of the test suite */
     private String var;
 
-    /** the name of the test suite to create */
+    /** The name of the test suite to create */
     private String name;
 
     public SuiteTag() {
diff --git 
a/jelly-tags/ant/src/main/java/org/apache/commons/jelly/tags/ant/FileScannerTag.java
 
b/jelly-tags/ant/src/main/java/org/apache/commons/jelly/tags/ant/FileScannerTag.java
index 95c04d77..3445c2e1 100644
--- 
a/jelly-tags/ant/src/main/java/org/apache/commons/jelly/tags/ant/FileScannerTag.java
+++ 
b/jelly-tags/ant/src/main/java/org/apache/commons/jelly/tags/ant/FileScannerTag.java
@@ -35,7 +35,7 @@ public class FileScannerTag extends TagSupport implements 
TaskSource {
     /** The file walker that gets created */
     private FileScanner fileScanner;
 
-    /** the variable exported */
+    /** The variable exported */
     private String var;
 
     public FileScannerTag(FileScanner fileScanner) {
diff --git 
a/jelly-tags/bean/src/main/java/org/apache/commons/jelly/tags/bean/BeanPropertyTag.java
 
b/jelly-tags/bean/src/main/java/org/apache/commons/jelly/tags/bean/BeanPropertyTag.java
index cebae3de..f9421235 100644
--- 
a/jelly-tags/bean/src/main/java/org/apache/commons/jelly/tags/bean/BeanPropertyTag.java
+++ 
b/jelly-tags/bean/src/main/java/org/apache/commons/jelly/tags/bean/BeanPropertyTag.java
@@ -42,7 +42,7 @@ public class BeanPropertyTag extends BeanTag {
     /** empty argument types constant */
     private static final Class[] EMPTY_ARG_TYPES = {};
 
-    /** the name of the create method */
+    /** The name of the create method */
     private String createMethodName;
 
 
diff --git 
a/jelly-tags/bean/src/main/java/org/apache/commons/jelly/tags/bean/BeanTag.java 
b/jelly-tags/bean/src/main/java/org/apache/commons/jelly/tags/bean/BeanTag.java
index fb1ee2d9..5d9711ba 100644
--- 
a/jelly-tags/bean/src/main/java/org/apache/commons/jelly/tags/bean/BeanTag.java
+++ 
b/jelly-tags/bean/src/main/java/org/apache/commons/jelly/tags/bean/BeanTag.java
@@ -47,10 +47,10 @@ public class BeanTag extends UseBeanTag {
 
     protected static final Object[] EMPTY_ARGUMENTS = {};
 
-    /** the name of the property to create */
+    /** The name of the property to create */
     private String tagName;
 
-    /** the name of the adder method */
+    /** The name of the adder method */
     protected String addMethodName;
 
     /** if present this is used to call a doit method when the bean is 
constructed */
diff --git 
a/jelly-tags/bean/src/main/java/org/apache/commons/jelly/tags/bean/BeandefTag.java
 
b/jelly-tags/bean/src/main/java/org/apache/commons/jelly/tags/bean/BeandefTag.java
index 7cd61e48..6e1b51eb 100644
--- 
a/jelly-tags/bean/src/main/java/org/apache/commons/jelly/tags/bean/BeandefTag.java
+++ 
b/jelly-tags/bean/src/main/java/org/apache/commons/jelly/tags/bean/BeandefTag.java
@@ -47,19 +47,19 @@ public class BeandefTag extends TagSupport {
 
     protected static final Class[] EMPTY_ARGUMENT_TYPES = {};
 
-    /** the name of the tag to create */
+    /** The name of the tag to create */
     private String name;
 
-    /** the Java class name to use for the tag */
+    /** The Java class name to use for the tag */
     private String className;
 
-    /** the name of the invoke method */
+    /** The name of the invoke method */
     private String methodName;
 
-    /** the ClassLoader used to load beans */
+    /** The ClassLoader used to load beans */
     private ClassLoader classLoader;
 
-    /** the library in which to define this new bean tag */
+    /** The library in which to define this new bean tag */
     private BeanTagLibrary library;
 
     public BeandefTag(BeanTagLibrary library) {
diff --git 
a/jelly-tags/betwixt/src/main/java/org/apache/commons/jelly/tags/betwixt/ParseTag.java
 
b/jelly-tags/betwixt/src/main/java/org/apache/commons/jelly/tags/betwixt/ParseTag.java
index 0d9ad8ce..85a6e3c7 100644
--- 
a/jelly-tags/betwixt/src/main/java/org/apache/commons/jelly/tags/betwixt/ParseTag.java
+++ 
b/jelly-tags/betwixt/src/main/java/org/apache/commons/jelly/tags/betwixt/ParseTag.java
@@ -49,7 +49,7 @@ public class ParseTag extends TagSupport {
     /** The Log to which logging calls will be made. */
     private static final Log log = LogFactory.getLog(ParseTag.class);
 
-    /** the BeanReader used to parse the XML */
+    /** The BeanReader used to parse the XML */
     private BeanReader reader = new BeanReader();
 
     private String uri;
diff --git 
a/jelly-tags/define/src/main/java/org/apache/commons/jelly/tags/define/AttributeTag.java
 
b/jelly-tags/define/src/main/java/org/apache/commons/jelly/tags/define/AttributeTag.java
index e2eb24da..b14149cb 100644
--- 
a/jelly-tags/define/src/main/java/org/apache/commons/jelly/tags/define/AttributeTag.java
+++ 
b/jelly-tags/define/src/main/java/org/apache/commons/jelly/tags/define/AttributeTag.java
@@ -41,7 +41,7 @@ public class AttributeTag extends TagSupport {
     /** The Log to which logging calls will be made. */
     private static final Log log = LogFactory.getLog(AttributeTag.class);
 
-    /** the attribute definition */
+    /** The attribute definition */
     private Attribute attribute;
 
     public AttributeTag() {
diff --git 
a/jelly-tags/define/src/main/java/org/apache/commons/jelly/tags/define/BeanTag.java
 
b/jelly-tags/define/src/main/java/org/apache/commons/jelly/tags/define/BeanTag.java
index 29f3831f..ec01a06f 100644
--- 
a/jelly-tags/define/src/main/java/org/apache/commons/jelly/tags/define/BeanTag.java
+++ 
b/jelly-tags/define/src/main/java/org/apache/commons/jelly/tags/define/BeanTag.java
@@ -49,19 +49,19 @@ public class BeanTag extends DefineTagSupport {
     /** An empty Map as I think Collections.EMPTY_MAP is only JDK 1.3 onwards 
*/
     private static final Map EMPTY_MAP = new HashMap();
 
-    /** the name of the tag to create */
+    /** The name of the tag to create */
     private String name;
 
-    /** the Java class name to use for the tag */
+    /** The Java class name to use for the tag */
     private String className;
 
-    /** the ClassLoader used to load beans */
+    /** The ClassLoader used to load beans */
     private ClassLoader classLoader;
 
-    /** the name of the attribute used for the variable name */
+    /** The name of the attribute used for the variable name */
     private String varAttribute = "var";
 
-    /** the attribute definitions for this dynamic tag */
+    /** The attribute definitions for this dynamic tag */
     private Map attributes;
 
     /**
diff --git 
a/jelly-tags/define/src/main/java/org/apache/commons/jelly/tags/define/DynaBeanTag.java
 
b/jelly-tags/define/src/main/java/org/apache/commons/jelly/tags/define/DynaBeanTag.java
index 2ec5dba4..168050ce 100644
--- 
a/jelly-tags/define/src/main/java/org/apache/commons/jelly/tags/define/DynaBeanTag.java
+++ 
b/jelly-tags/define/src/main/java/org/apache/commons/jelly/tags/define/DynaBeanTag.java
@@ -46,16 +46,16 @@ public class DynaBeanTag extends DefineTagSupport {
     /** An empty Map as I think Collections.EMPTY_MAP is only JDK 1.3 onwards 
*/
     private static final Map EMPTY_MAP = new HashMap();
 
-    /** the name of the tag to create */
+    /** The name of the tag to create */
     private String name;
 
-    /** the DyanClass to bind to the tag */
+    /** The DyanClass to bind to the tag */
     private DynaClass dynaClass;
 
-    /** the name of the attribute used for the variable name */
+    /** The name of the attribute used for the variable name */
     private String varAttribute = "var";
 
-    /** the attribute definitions for this dynamic tag */
+    /** The attribute definitions for this dynamic tag */
     private Map attributes;
 
     /**
diff --git 
a/jelly-tags/define/src/main/java/org/apache/commons/jelly/tags/define/JellyBeanTag.java
 
b/jelly-tags/define/src/main/java/org/apache/commons/jelly/tags/define/JellyBeanTag.java
index b579ef74..da3fb0a5 100644
--- 
a/jelly-tags/define/src/main/java/org/apache/commons/jelly/tags/define/JellyBeanTag.java
+++ 
b/jelly-tags/define/src/main/java/org/apache/commons/jelly/tags/define/JellyBeanTag.java
@@ -40,7 +40,7 @@ public class JellyBeanTag extends BeanTag {
     /** Empty parameter types for Method lookup */
     private static final Class[] emptyParamTypes = {};
 
-    /** the name of the method to invoke on the bean */
+    /** The name of the method to invoke on the bean */
     private String method;
 
     // Properties
diff --git 
a/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/DeleteTag.java
 
b/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/DeleteTag.java
index d0e49993..be20d325 100644
--- 
a/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/DeleteTag.java
+++ 
b/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/DeleteTag.java
@@ -29,7 +29,7 @@ import org.apache.commons.httpclient.methods.DeleteMethod;
  */
 public class DeleteTag extends HttpTagSupport {
 
-    /** the delete method */
+    /** The delete method */
     private DeleteMethod _deleteMethod;
 
     /**
diff --git 
a/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/GetTag.java 
b/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/GetTag.java
index 4820649f..7a18be57 100644
--- 
a/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/GetTag.java
+++ 
b/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/GetTag.java
@@ -29,7 +29,7 @@ import org.apache.commons.httpclient.methods.GetMethod;
  */
 public class GetTag extends HttpTagSupport {
 
-    /** the get method */
+    /** The get method */
     private GetMethod _getMethod;
 
     /**
diff --git 
a/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/HeadTag.java 
b/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/HeadTag.java
index 5fa8c0e5..875bb95a 100644
--- 
a/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/HeadTag.java
+++ 
b/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/HeadTag.java
@@ -29,7 +29,7 @@ import org.apache.commons.httpclient.methods.HeadMethod;
  */
 public class HeadTag extends HttpTagSupport {
 
-    /** the head method */
+    /** The head method */
     private HeadMethod _headMethod;
 
     /**
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 d50c7808..9da0ba6f 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
@@ -60,7 +60,7 @@ public abstract class HttpTagSupport extends TagSupport {
     private List _parameters;
     /** list of headers as name value pairs */
     private List _requestHeaders;
-    /** the header name for the user agent */
+    /** The header name for the user agent */
     private static final String HEADER_NAME_USER_AGENT = "User-Agent";
 
     /**
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 f4c36352..ddde247c 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
@@ -47,7 +47,7 @@ import 
org.apache.commons.httpclient.methods.multipart.StringPart;
  */
 public class MultipartPostTag extends PostTag {
 
-    /** the post method */
+    /** The post method */
     private MultipartPostMethod _postMethod;
 
     /** list of parts as name value pairs */
diff --git 
a/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/OptionsTag.java
 
b/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/OptionsTag.java
index 9afdfd27..d3f4abef 100644
--- 
a/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/OptionsTag.java
+++ 
b/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/OptionsTag.java
@@ -29,7 +29,7 @@ import org.apache.commons.httpclient.methods.OptionsMethod;
  */
 public class OptionsTag extends HttpTagSupport {
 
-    /** the options method */
+    /** The options method */
     private OptionsMethod _optionsMethod;
 
     /**
diff --git 
a/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/PostTag.java 
b/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/PostTag.java
index cbb42c10..d017c063 100644
--- 
a/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/PostTag.java
+++ 
b/jelly-tags/http/src/main/java/org/apache/commons/jelly/tags/http/PostTag.java
@@ -30,7 +30,7 @@ import org.apache.commons.httpclient.methods.PostMethod;
  */
 public class PostTag extends HttpTagSupport {
 
-    /** the post method */
+    /** The post method */
     private PostMethod _postMethod;
 
     /** Creates a new instance of PostTag */
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 0d35d071..26f4d758 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
@@ -26,11 +26,11 @@ package org.apache.commons.jelly.tags.http;
  */
 public class Proxy {
 
-    /** the host to use as a proxy */
+    /** The host to use as a proxy */
     private String _host;
-    /** the port to send proxied requests on */
+    /** The port to send proxied requests on */
     private int _port;
-    /** the port number that represents port is unassigned */
+    /** The port number that represents port is unassigned */
     public static final int PORT_UNSPECIFIED = -1;
 
     /**
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 894e0d3e..61f1d503 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
@@ -29,7 +29,7 @@ import org.apache.commons.httpclient.methods.PutMethod;
  */
 public class PutTag extends HttpTagSupport {
 
-    /** the put method */
+    /** The put method */
     private PutMethod _putMethod;
 
     /** Creates a new instance of PutTag */
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 84493319..682fccdf 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
@@ -37,7 +37,7 @@ public class SessionTag extends TagSupport {
     private Proxy _proxy = new Proxy();
     /** whether the default is for secure comms */
     private boolean _secure;
-    /** the browser identifier */
+    /** The browser identifier */
     private String _userAgent;
     /** strict compliance */
     private boolean _strictMode = false;
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 6503a996..f2cc7d8c 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
@@ -47,7 +47,7 @@ public class HttpContextTag extends TagSupport {
     /** parameter realmName*/
     private String _realmName;
 
-    /** the actual context this tag refers to */
+    /** The actual context this tag refers to */
     private HttpContext _context;
 
     /** Creates a new instance of HttpContextTag */
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 3f2226f6..e6799fb1 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
@@ -63,7 +63,7 @@ public class JettyHttpServerTag extends TagSupport {
     private static final org.apache.commons.logging.Log log =
         LogFactory.getLog(JettyHttpServerTag.class);
 
-    /** the log sink for the Jety server */
+    /** The log sink for the Jety server */
     private static OutputStreamLogSink _logSink;
 
     // static initialisation
@@ -82,7 +82,7 @@ public class JettyHttpServerTag extends TagSupport {
     /** unique identifier of the tag/ variable to store result in */
     private String _var;
 
-    /** the HTTP server for this tag */
+    /** The HTTP server for this tag */
     private HttpServer _server;
 
     /** file name of Jetty log file - with default */
diff --git 
a/jelly-tags/jms/src/main/java/org/apache/commons/jelly/tags/jms/StopwatchTag.java
 
b/jelly-tags/jms/src/main/java/org/apache/commons/jelly/tags/jms/StopwatchTag.java
index 6b219a60..dabf307e 100644
--- 
a/jelly-tags/jms/src/main/java/org/apache/commons/jelly/tags/jms/StopwatchTag.java
+++ 
b/jelly-tags/jms/src/main/java/org/apache/commons/jelly/tags/jms/StopwatchTag.java
@@ -34,13 +34,13 @@ import 
org.apache.commons.messenger.tool.StopWatchMessageListener;
  */
 public class StopwatchTag extends MessageOperationTag implements ConsumerTag {
 
-    /** the underlying MessageListener */
+    /** The underlying MessageListener */
     private MessageListener messageListener;
 
     /** The Log to which logging calls will be made. */
     private Log log = LogFactory.getLog( StopwatchTag.class );
 
-    /** the message group size */
+    /** The message group size */
     private int groupSize = 1000;
 
     public StopwatchTag() {
diff --git 
a/jelly-tags/jms/src/main/java/org/apache/commons/jelly/tags/jms/SubscribeTag.java
 
b/jelly-tags/jms/src/main/java/org/apache/commons/jelly/tags/jms/SubscribeTag.java
index a90c756a..db03c7db 100644
--- 
a/jelly-tags/jms/src/main/java/org/apache/commons/jelly/tags/jms/SubscribeTag.java
+++ 
b/jelly-tags/jms/src/main/java/org/apache/commons/jelly/tags/jms/SubscribeTag.java
@@ -37,7 +37,7 @@ public class SubscribeTag extends MessageOperationTag 
implements ConsumerTag {
     /** The Log to which logging calls will be made. */
     private static final Log log = LogFactory.getLog(SubscribeTag.class);
 
-    /** the JMS Selector for the subscription */
+    /** The JMS Selector for the subscription */
     private String selector;
 
     /** The JMS MessageListener used to create the subscription */
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 ba4e699c..bbe82dd0 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
@@ -33,7 +33,7 @@ import org.apache.commons.jelly.XMLOutput;
  */
 public class AssertFileContainsTag extends AssertTagSupport
 {
-    /** the file to check */
+    /** The file to check */
     private File file;
     
     /** content to match */
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 26cefff4..bd628888 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
@@ -30,7 +30,7 @@ import org.apache.commons.jelly.expression.Expression;
  */
 public class AssertFileExistsTag extends AssertTagSupport
 {
-       /** the file to check */
+       /** The file to check */
        private File file;
 
        /**
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 f9b6ea8a..a3d61cbc 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
@@ -30,7 +30,7 @@ import org.apache.commons.jelly.expression.Expression;
  */
 public class AssertFileNotFoundTag extends AssertTagSupport
 {
-    /** the file to check */
+    /** The file to check */
     private File file;
 
     /**
diff --git 
a/jelly-tags/junit/src/main/java/org/apache/commons/jelly/tags/junit/AssertTagSupport.java
 
b/jelly-tags/junit/src/main/java/org/apache/commons/jelly/tags/junit/AssertTagSupport.java
index e09e579f..7263920c 100644
--- 
a/jelly-tags/junit/src/main/java/org/apache/commons/jelly/tags/junit/AssertTagSupport.java
+++ 
b/jelly-tags/junit/src/main/java/org/apache/commons/jelly/tags/junit/AssertTagSupport.java
@@ -26,7 +26,7 @@ import org.apache.commons.jelly.xpath.XPathTagSupport;
  */
 public abstract class AssertTagSupport extends XPathTagSupport {
 
-    /** the default message to display if none is given */
+    /** The default message to display if none is given */
     private static String DEFAULT_MESSAGE = "assertion failed";
     
     public AssertTagSupport() {
diff --git 
a/jelly-tags/junit/src/main/java/org/apache/commons/jelly/tags/junit/JellyAssertionFailedError.java
 
b/jelly-tags/junit/src/main/java/org/apache/commons/jelly/tags/junit/JellyAssertionFailedError.java
index b86ab3f1..cf84af10 100644
--- 
a/jelly-tags/junit/src/main/java/org/apache/commons/jelly/tags/junit/JellyAssertionFailedError.java
+++ 
b/jelly-tags/junit/src/main/java/org/apache/commons/jelly/tags/junit/JellyAssertionFailedError.java
@@ -34,19 +34,19 @@ import org.apache.commons.jelly.LocationAware;
 
 public class JellyAssertionFailedError extends AssertionFailedError implements 
LocationAware {
 
-    /** the underlying cause of the exception */
+    /** The underlying cause of the exception */
     private Throwable cause;
 
-    /** the Jelly file which caused the problem */
+    /** The Jelly file which caused the problem */
     private String fileName;
 
-    /** the tag name which caused the problem */
+    /** The tag name which caused the problem */
     private String elementName;
 
-    /** the line number in the script of the error */
+    /** The line number in the script of the error */
     private int lineNumber = -1;
 
-    /** the column number in the script of the error */
+    /** The column number in the script of the error */
     private int columnNumber = -1;
 
     public JellyAssertionFailedError() {
diff --git 
a/jelly-tags/junit/src/main/java/org/apache/commons/jelly/tags/junit/SuiteTag.java
 
b/jelly-tags/junit/src/main/java/org/apache/commons/jelly/tags/junit/SuiteTag.java
index 1eb6eaff..fea31601 100644
--- 
a/jelly-tags/junit/src/main/java/org/apache/commons/jelly/tags/junit/SuiteTag.java
+++ 
b/jelly-tags/junit/src/main/java/org/apache/commons/jelly/tags/junit/SuiteTag.java
@@ -31,13 +31,13 @@ import org.apache.commons.jelly.XMLOutput;
  */
 public class SuiteTag extends TagSupport {
 
-    /** the test suite this tag created */
+    /** The test suite this tag created */
     private TestSuite suite;
 
-    /** the name of the variable of the test suite */
+    /** The name of the variable of the test suite */
     private String var;
 
-    /** the name of the test suite to create */
+    /** The name of the test suite to create */
     private String name;
 
     public SuiteTag() {
diff --git 
a/jelly-tags/ojb/src/main/java/org/apache/commons/jelly/tags/ojb/StoreTag.java 
b/jelly-tags/ojb/src/main/java/org/apache/commons/jelly/tags/ojb/StoreTag.java
index 53820bb2..76c18d70 100644
--- 
a/jelly-tags/ojb/src/main/java/org/apache/commons/jelly/tags/ojb/StoreTag.java
+++ 
b/jelly-tags/ojb/src/main/java/org/apache/commons/jelly/tags/ojb/StoreTag.java
@@ -29,7 +29,7 @@ import org.apache.ojb.broker.PersistenceBroker;
  */
 public class StoreTag extends TagSupport {
 
-    /** the value to persist */
+    /** The value to persist */
     private Object value;
 
     /** The persistence broker instance */
diff --git 
a/jelly-tags/swing/src/main/java/org/apache/commons/jelly/tags/swing/ComponentTag.java
 
b/jelly-tags/swing/src/main/java/org/apache/commons/jelly/tags/swing/ComponentTag.java
index 2e5331d5..f3b07a47 100644
--- 
a/jelly-tags/swing/src/main/java/org/apache/commons/jelly/tags/swing/ComponentTag.java
+++ 
b/jelly-tags/swing/src/main/java/org/apache/commons/jelly/tags/swing/ComponentTag.java
@@ -73,7 +73,7 @@ public class ComponentTag extends UseBeanTag implements 
ContainerTag {
      */
     private static final DebugGraphicsConverter debugGraphicsConverter = new 
DebugGraphicsConverter();
     
-    /** the factory of widgets */
+    /** The factory of widgets */
     private Factory factory;
 
     public ComponentTag() {
diff --git 
a/jelly-tags/swing/src/main/java/org/apache/commons/jelly/tags/swing/FontTag.java
 
b/jelly-tags/swing/src/main/java/org/apache/commons/jelly/tags/swing/FontTag.java
index c2ce1769..38c4d89f 100644
--- 
a/jelly-tags/swing/src/main/java/org/apache/commons/jelly/tags/swing/FontTag.java
+++ 
b/jelly-tags/swing/src/main/java/org/apache/commons/jelly/tags/swing/FontTag.java
@@ -37,7 +37,7 @@ public class FontTag extends MapTagSupport {
     /** The Log to which logging calls will be made. */
     private static final Log log = LogFactory.getLog(FontTag.class);
 
-    /** the current font instance */
+    /** The current font instance */
     private Font font;
 
     public FontTag() {
diff --git 
a/jelly-tags/threads/src/main/java/org/apache/commons/jelly/tags/threads/ThreadTag.java
 
b/jelly-tags/threads/src/main/java/org/apache/commons/jelly/tags/threads/ThreadTag.java
index 0614044c..5d012ba3 100644
--- 
a/jelly-tags/threads/src/main/java/org/apache/commons/jelly/tags/threads/ThreadTag.java
+++ 
b/jelly-tags/threads/src/main/java/org/apache/commons/jelly/tags/threads/ThreadTag.java
@@ -51,7 +51,7 @@ public class ThreadTag extends TagSupport {
     private int priority = Thread.NORM_PRIORITY;
     /** Sets if the thread should be a daemon or not */
     private boolean daemon = false;
-    /** the destination of output */
+    /** The destination of output */
     private XMLOutput xmlOutput;
     /** Should we close the underlying output */
     private boolean closeOutput;
diff --git 
a/jelly-tags/util/src/main/java/org/apache/commons/jelly/tags/util/ReplaceTag.java
 
b/jelly-tags/util/src/main/java/org/apache/commons/jelly/tags/util/ReplaceTag.java
index 2c66fc15..c6eabf88 100644
--- 
a/jelly-tags/util/src/main/java/org/apache/commons/jelly/tags/util/ReplaceTag.java
+++ 
b/jelly-tags/util/src/main/java/org/apache/commons/jelly/tags/util/ReplaceTag.java
@@ -45,16 +45,16 @@ public class ReplaceTag extends TagSupport {
     /** The expression to evaluate. */
     private Expression value;
 
-    /** the old character to be replaced */
+    /** The old character to be replaced */
     private String oldChar;
 
-    /** the new character that will replace the old */
+    /** The new character that will replace the old */
     private String newChar;
 
-    /** the old string to be replace */
+    /** The old string to be replace */
     private String oldString;
 
-    /** the new string that will replace the old */
+    /** The new string that will replace the old */
     private String newString;
 
     // Tag interface
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 4e533182..f6e6189d 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
@@ -32,7 +32,7 @@ public class SortTag extends TagSupport {
     /** things to sort */
     private List items;
     
-    /** the variable to store the result in */
+    /** The variable to store the result in */
     private String var;
     
     /** property of the beans to sort on, if any */
diff --git 
a/jelly-tags/util/src/main/java/org/apache/commons/jelly/tags/util/TokenizeTag.java
 
b/jelly-tags/util/src/main/java/org/apache/commons/jelly/tags/util/TokenizeTag.java
index a247d68d..40cbf0df 100644
--- 
a/jelly-tags/util/src/main/java/org/apache/commons/jelly/tags/util/TokenizeTag.java
+++ 
b/jelly-tags/util/src/main/java/org/apache/commons/jelly/tags/util/TokenizeTag.java
@@ -71,7 +71,7 @@ public class TokenizeTag extends TagSupport
         this.var = var;
     }
 
-    /** the delimiter that separates the tokens */
+    /** The delimiter that separates the tokens */
     public void setDelim(String delim)
     {
         this.delim = delim;
diff --git 
a/jelly-tags/validate/src/main/java/org/apache/commons/jelly/tags/validate/VerifierTag.java
 
b/jelly-tags/validate/src/main/java/org/apache/commons/jelly/tags/validate/VerifierTag.java
index f94b0113..845ba137 100644
--- 
a/jelly-tags/validate/src/main/java/org/apache/commons/jelly/tags/validate/VerifierTag.java
+++ 
b/jelly-tags/validate/src/main/java/org/apache/commons/jelly/tags/validate/VerifierTag.java
@@ -42,7 +42,7 @@ import org.xml.sax.SAXException;
  */
 public class VerifierTag extends TagSupport {
 
-    /** the variable name to export the Verifier as */
+    /** The variable name to export the Verifier as */
     private String var;
 
     /** The URI to load the schema from */
diff --git 
a/jelly-tags/xml/src/main/java/org/apache/commons/jelly/tags/xml/AttributeTag.java
 
b/jelly-tags/xml/src/main/java/org/apache/commons/jelly/tags/xml/AttributeTag.java
index 467c41ae..6f13ac46 100644
--- 
a/jelly-tags/xml/src/main/java/org/apache/commons/jelly/tags/xml/AttributeTag.java
+++ 
b/jelly-tags/xml/src/main/java/org/apache/commons/jelly/tags/xml/AttributeTag.java
@@ -29,7 +29,7 @@ public class AttributeTag extends TagSupport {
      /** The namespace URI. */
     private String namespace;
 
-    /** the name of the attribute. */
+    /** The name of the attribute. */
     private String name;
 
 
diff --git 
a/jelly-tags/xml/src/main/java/org/apache/commons/jelly/tags/xml/ParamTag.java 
b/jelly-tags/xml/src/main/java/org/apache/commons/jelly/tags/xml/ParamTag.java
index feb0dfdd..866a1be6 100644
--- 
a/jelly-tags/xml/src/main/java/org/apache/commons/jelly/tags/xml/ParamTag.java
+++ 
b/jelly-tags/xml/src/main/java/org/apache/commons/jelly/tags/xml/ParamTag.java
@@ -26,10 +26,10 @@ import org.apache.commons.jelly.XMLOutput;
   */
 public class ParamTag extends TagSupport {
 
-    /** the name of the attribute. */
+    /** The name of the attribute. */
     private String name;
 
-    /** the value of the attribute. */
+    /** The value of the attribute. */
     private Object value;
 
 
diff --git 
a/jelly-tags/xml/src/main/java/org/apache/commons/jelly/tags/xml/TransformTag.java
 
b/jelly-tags/xml/src/main/java/org/apache/commons/jelly/tags/xml/TransformTag.java
index 4059c426..08df77df 100644
--- 
a/jelly-tags/xml/src/main/java/org/apache/commons/jelly/tags/xml/TransformTag.java
+++ 
b/jelly-tags/xml/src/main/java/org/apache/commons/jelly/tags/xml/TransformTag.java
@@ -91,7 +91,7 @@ public class TransformTag extends ParseTag {
     /** The xsl transformer factory */
     private SAXTransformerFactory tf;
 
-    /** the transformer handler, doing the real work */
+    /** The transformer handler, doing the real work */
     private TransformerHandler transformerHandler;
 
     /**

Reply via email to