Author: wsmoak
Date: Sat Sep 24 20:13:37 2005
New Revision: 291372

URL: http://svn.apache.org/viewcvs?rev=291372&view=rev
Log:
Fixed Javadoc warnings.  Minor editing of comments, no changes to code.

Modified:
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/Clay.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/AbstractCommand.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/AssignActionListenersCommand.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/AssignValueChangeListenersCommand.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/ClayContext.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/CreateConverterCommand.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/CreateValueChangeListenerCommand.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/ClayConfigureListener.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/Globals.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/beans/AttributeBean.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/beans/ComponentBean.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/beans/ComponentConfigBean.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/beans/ConfigBean.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/beans/ElementBean.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/AttributeTokenizer.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/Node.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/Parser.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/Token.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/Builder.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/BuilderFactory.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/FormBuilder.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/InputTextBuilder.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/InputTextareaBuilder.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/OutputLinkBuilder.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/SelectBooleanCheckboxBuilder.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/SelectItemBuilder.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/SelectItemsBuilder.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/SelectManyMenuBuilder.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/VerbatimBuilder.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/taglib/ClayTag.java
    
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/utils/PropUtils.java

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/Clay.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/Clay.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/Clay.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/Clay.java
 Sat Sep 24 20:13:37 2005
@@ -136,7 +136,7 @@
 
     /**
      * <p>
-     * Returns the unique identifier used to build the component subtree
+     * Returns the unique identifier used to build the component subtree.
      * </p>
      */
     public String getJsfid() {
@@ -145,7 +145,7 @@
    
     /**
      * <p>
-     * Sets the unique identifier used to build the component subtree
+     * Sets the unique identifier used to build the component subtree.
      * </p>
      */
     public void setJsfid(String jsfid) {
@@ -372,7 +372,7 @@
     
     /**
      * <p>
-     * Calls to super and adds some trace logging
+     * Calls to super and adds some trace logging.
      * </p>
      */
     public void encodeChildren(FacesContext context) throws IOException {
@@ -399,8 +399,8 @@
     
     /**
      * <p>
-     * Retuns the root [EMAIL PROTECTED] ComponentBean} used to build the clay 
subtree
-     * component
+     * Returns the root [EMAIL PROTECTED] ComponentBean} used to build the 
clay subtree
+     * component.
      * </p>
      */
     protected ComponentBean getDisplayElementRoot() {
@@ -410,7 +410,7 @@
     /**
      * <p>
      * Sets the root [EMAIL PROTECTED] ComponentBean} used to build the clay 
subtree
-     * component
+     * component.
      * </p>
      */
     protected void setDisplayElementRoot(ComponentBean displayElementRoot) {
@@ -419,7 +419,7 @@
     
     /**
      * <p>
-     * Restores a components state
+     * Restores a component's state.
      * </p>
      *
      * @see 
javax.faces.component.StateHolder#restoreState(javax.faces.context.FacesContext,
@@ -439,7 +439,7 @@
     
     /**
      * <p>
-     * Saves a component's state
+     * Saves a component's state.
      * </p>
      *
      * @see 
javax.faces.component.StateHolder#saveState(javax.faces.context.FacesContext)

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/AbstractCommand.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/AbstractCommand.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/AbstractCommand.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/AbstractCommand.java
 Sat Sep 24 20:13:37 2005
@@ -30,7 +30,7 @@
 
 /**
  * <p>
- * The base class for the command's that create the component tree
+ * The base class for the commands that create the component tree.
  * </p>
  */
 public abstract class AbstractCommand implements Command {

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/AssignActionListenersCommand.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/AssignActionListenersCommand.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/AssignActionListenersCommand.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/AssignActionListenersCommand.java
 Sat Sep 24 20:13:37 2005
@@ -35,7 +35,7 @@
 /**
  * <p>
  * Iterates over the action listeners defined in the [EMAIL PROTECTED] 
ComponentBean}
- * invoking [EMAIL PROTECTED] CreateActionListenerCommand}
+ * invoking [EMAIL PROTECTED] CreateActionListenerCommand}.
  * </p>
  */
 public class AssignActionListenersCommand extends AbstractCommand {

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/AssignValueChangeListenersCommand.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/AssignValueChangeListenersCommand.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/AssignValueChangeListenersCommand.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/AssignValueChangeListenersCommand.java
 Sat Sep 24 20:13:37 2005
@@ -34,9 +34,10 @@
 
 /**
  * <p>
- * For each [EMAIL PROTECTED] 
org.apache.shale.clay.config.beans.ValueChangeListenerBean} in the
- * <code>valueChangeListeners</code> collection, the
- * [EMAIL PROTECTED] 
org.apache.shale.clay.component.chain.CreateValueChangeListenerCommand} command 
will be invoked
+ * For each [EMAIL PROTECTED] 
org.apache.shale.clay.config.beans.ValueChangeListenerBean} 
+ * in the <code>valueChangeListeners</code> collection, the
+ * [EMAIL PROTECTED] 
org.apache.shale.clay.component.chain.CreateValueChangeListenerCommand}
+ * command will be invoked.
  * </p>
  */
 public class AssignValueChangeListenersCommand extends AbstractCommand {

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/ClayContext.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/ClayContext.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/ClayContext.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/ClayContext.java
 Sat Sep 24 20:13:37 2005
@@ -66,14 +66,14 @@
     private String jsfid = null;
 
     /**
-     * <p>Returns the unique identifier for a component metadata definition</p>
+     * <p>Returns the unique identifier for a component metadata 
definition.</p>
      */
     public String getJsfid() {
         return jsfid;
     }
     
     /**
-     * <p>Sets the unique identifier for a component metadata definition</p>
+     * <p>Sets the unique identifier for a component metadata definition.</p>
      */
     public void setJsfid(String jsfid) {
         this.jsfid = jsfid;
@@ -149,14 +149,18 @@
     private AttributeBean attribute = null;
     
     /**
-     * <p>Sets the current attribute for each in [EMAIL PROTECTED] 
org.apache.shale.clay.component.chain.AssignPropertiesCommand}</p>
+     * <p>Sets the current attribute for each in 
+     * [EMAIL PROTECTED] 
org.apache.shale.clay.component.chain.AssignPropertiesCommand}.
+     * </p>
      */
     public void setAttribute(AttributeBean attribute) {
         this.attribute = attribute;
     }
     
     /**
-     * <p>Gets the current attribute for each in [EMAIL PROTECTED] 
org.apache.shale.clay.component.chain.AssignPropertiesCommand}</p>
+     * <p>Gets the current attribute for each in 
+     * [EMAIL PROTECTED] 
org.apache.shale.clay.component.chain.AssignPropertiesCommand}.
+     * </p>
      */
     public AttributeBean getAttribute() {
         return attribute;
@@ -192,14 +196,14 @@
     private FacesContext facesContext = null;
     
     /**
-     * <p>Returns the current faces Context</p>
+     * <p>Returns the current faces Context.</p>
      */
     public FacesContext getFacesContext() {
         return facesContext;
     }
     
     /**
-     * <p>Sets the current faces Context</p>
+     * <p>Sets the current faces Context.</p>
      */
     public void setFacesContext(FacesContext facesContext) {
         this.facesContext = facesContext;
@@ -214,14 +218,14 @@
     private UIComponent parent = null;
     
     /**
-     * <p>Returns the <strong>parent</strong> of the <strong>child</strong></p>
+     * <p>Returns the <strong>parent</strong> of the 
<strong>child</strong>.</p>
      */
     public UIComponent getParent() {
         return parent;
     }
     
     /**
-     * <p>Sets the <strong>parent</strong> of the <strong>child</strong></p>
+     * <p>Sets the <strong>parent</strong> of the <strong>child</strong>.</p>
      */
     public void setParent(UIComponent parent) {
         this.parent = parent;

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/CreateConverterCommand.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/CreateConverterCommand.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/CreateConverterCommand.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/CreateConverterCommand.java
 Sat Sep 24 20:13:37 2005
@@ -31,8 +31,9 @@
 /**
  * <p>
  * This <code>Command</code> will create a <code>Converter<code> from the
- * <code>displayElement</code> attribute of the [EMAIL PROTECTED] 
org.apache.shale.clay.component.chain.ClayContext} assigning
- * it to the <code>parent</code>
+ * <code>displayElement</code> attribute of the 
+ * [EMAIL PROTECTED] org.apache.shale.clay.component.chain.ClayContext} 
assigning
+ * it to the <code>parent</code>.
  * </p>
  *
  */

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/CreateValueChangeListenerCommand.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/CreateValueChangeListenerCommand.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/CreateValueChangeListenerCommand.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/component/chain/CreateValueChangeListenerCommand.java
 Sat Sep 24 20:13:37 2005
@@ -48,7 +48,7 @@
     /**
      * <p>
      * Creates a <code>ValueChangeListener</code> and assigns it to the
-     * <code>parent</code> attribute
+     * <code>parent</code> attribute.
      * </p>
      */
     public boolean execute(Context context) throws Exception {

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/ClayConfigureListener.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/ClayConfigureListener.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/ClayConfigureListener.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/ClayConfigureListener.java
 Sat Sep 24 20:13:37 2005
@@ -93,7 +93,7 @@
     }
     
     /**
-     * <p>Tear down the factories and clean house</p>
+     * <p>Tear down the factories and clean house.</p>
      *
      * @see 
javax.servlet.ServletContextListener#contextDestroyed(javax.servlet.ServletContextEvent)
      */

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/Globals.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/Globals.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/Globals.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/Globals.java
 Sat Sep 24 20:13:37 2005
@@ -37,7 +37,7 @@
      * containing additional registered config files.  The list of files
      * should be comma delimited and the path relative to the context root.
      * <br>
-     * The configuration files should conform to the view-config.dtd
+     * The configuration files should conform to the clay-config_x_x.dtd
      *</p>
      */
     public static final String CLAY_CONFIG_FILES = "clay-config-files";
@@ -119,7 +119,7 @@
     /**
      * <p>This command is invoked to add a validator to a component
      * implementing the [EMAIL PROTECTED] 
javax.faces.component.EditableValueHolder}
-     * interface.</p
+     * interface.</p>
      */
     public static final String ADD_VALIDATOR_COMMAND_NAME = "addValidator";
     

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/beans/AttributeBean.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/beans/AttributeBean.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/beans/AttributeBean.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/beans/AttributeBean.java
 Sat Sep 24 20:13:37 2005
@@ -86,7 +86,7 @@
     }
  
     /**
-     * <p>Returns a name corresponding to an associated JSF object property</p>
+     * <p>Returns a name corresponding to an associated JSF object 
property.</p>
      */
     public String getName() {
         return name;
@@ -101,14 +101,14 @@
     }
 
     /**
-     * <p>Sets the name of the attribute</p>
+     * <p>Sets the name of the attribute.</p>
      */    
     public void setName(String string) {
         name = string;
     }
 
     /**
-     * <p>Sets the value of the attribute</p>
+     * <p>Sets the value of the attribute.</p>
      */    
     public void setValue(String string) {
         value = string;
@@ -125,14 +125,14 @@
     }
     
     /**
-     * <p>Returns the parent component containing this object instance</p>
+     * <p>Returns the parent component containing this object instance.</p>
      */
     public ComponentBean getHasAParent() {
         return hasAParent;
     }
   
     /**
-     * <p>Sets the parent component that contains this object instance</p>
+     * <p>Sets the parent component that contains this object instance.</p>
      */    
     public void setHasAParent(ComponentBean bean) {
         hasAParent = bean;
@@ -155,8 +155,9 @@
     }
 
     /**
-     * <p>Returns a boolean flag that indicates the <code>value</code> 
property is a
-     * method binding expression and should be invoked by the component</p>
+     * <p>Returns a boolean flag that indicates the <code>value</code> property
+     * is a method binding expression and should be invoked by the component.
+     * </p>
      */
     public boolean useMethodLateBinding() {
         boolean flag = true;
@@ -170,7 +171,7 @@
    
     /**
      * <p>Returns a String that indicates the <code>value</code> property is a
-     * method binding expression and should be invoked by the component</p>
+     * method binding expression and should be invoked by the component.</p>
      */
     public String getUseMethodLateBinding() {
         return methodLateBinding;
@@ -178,15 +179,15 @@
    
     /**
      * <p>Sets a String that indicates the <code>value</code> property is a
-     * method binding expression and should be invoked by the component</p>
+     * method binding expression and should be invoked by the component.</p>
      */    
     public void setUseMethodLateBinding(String b) {
         methodLateBinding = b;
     }
    
     /**
-     * <p>Returns a boolean flag that indicates the <code>value</code> 
property is a
-     * value binding expression and should be invoked by the component</p>
+     * <p>Returns a boolean flag that indicates the <code>value</code> property
+     * is a value binding expression and should be invoked by the 
component.</p>
      */    
     public boolean useValueLateBinding() {
         boolean flag = true;
@@ -200,7 +201,7 @@
   
     /**
      * <p>Returns a String that indicates the <code>value</code> property is a
-     * value binding expression and should be invoked by the component</p>
+     * value binding expression and should be invoked by the component.</p>
      */    
     public String getUseValueLateBinding() {
         return valueLateBinding;
@@ -208,23 +209,23 @@
   
     /**
      * <p>Sets a String that indicates the <code>value</code> property is a
-     * value binding expression and should be invoked by the component</p>
+     * value binding expression and should be invoked by the component.</p>
      */    
     public void setUseValueLateBinding(String b) {
         valueLateBinding = b;
     }
  
     /**
-     * <p>Returns boolean that indicates the meta inheritance relationships 
have been
-     * resolved</p>
+     * <p>Returns boolean that indicates the meta inheritance relationships 
have
+     * been resolved.</p>
      */    
     public boolean isInheritanceFinal() {
         return isInheritanceFinal;
     }
     
     /**
-     * <p>Sets a boolean that indicates the meta inheritance relationships 
have been
-     * resolved</p>
+     * <p>Sets a boolean that indicates the meta inheritance relationships have
+     * been resolved.</p>
      */    
     public void setInheritanceFinal(boolean b) {
         isInheritanceFinal = b;

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/beans/ComponentBean.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/beans/ComponentBean.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/beans/ComponentBean.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/beans/ComponentBean.java
 Sat Sep 24 20:13:37 2005
@@ -30,7 +30,7 @@
 import org.apache.shale.util.Messages;
 
 /**
- * <p>This is be base class of most of the metadata that is used by the
+ * <p>This is the base class of most of the metadata that is used by the
  * [EMAIL PROTECTED] org.apache.shale.clay.component.Clay} component to build
  * a component subtree.
  *
@@ -230,16 +230,16 @@
     }
  
     /**
-     * <p>Returns the component type that is use to instantiate the associated 
JSF
-     * component.<p>
+     * <p>Returns the component type that is used to instantiate the associated
+     * JSF component.<p>
      */    
     public String getComponentType() {
         return componentType;
     }
     
     /**
-     * <p>Returns the <code>jsfid</code> of the meta component that this 
instance
-     * inherits from<p>
+     * <p>Returns the <code>jsfid</code> of the meta component that this 
+     * instance inherits from.<p>
      */    
     public String getExtends() {
         return extendsElementId;
@@ -247,7 +247,7 @@
     
     /**
      * <p>Sets the component type uses by abstract factories to instantiate
-     * associated JSF resources</p>
+     * associated JSF resources.</p>
      */
     public void setComponentType(String string) {
         componentType = string;
@@ -255,7 +255,7 @@
     
     /**
      * <p>Sets the <code>jsfid</code> of the meta component that this meta
-     * component inherits from </code>
+     * component inherits from.
      * </p>
      */
     public void setExtends(String string) {
@@ -274,7 +274,7 @@
     }
   
     /**
-     *<p>Returns a set of children that are instances of [EMAIL PROTECTED] 
ElementBean}
+     *<p>Returns a set of children that are instances of [EMAIL PROTECTED] 
ElementBean}.
      *</p>
      */    
     public Collection getChildren() {
@@ -304,8 +304,9 @@
     }
   
     /**
-     * <p>This <code>Comparable</code> implementation makes the 
<code>jsfid</code> attribute
-     * the unique identifier for the object in a set</p>
+     * <p>This <code>Comparable</code> implementation makes the 
+     * <code>jsfid</code> attribute the unique identifier for the object in a
+     * set.</p>
      */    
     public int compareTo(Object obj) {
         return ((ComponentBean) obj).getJsfid().compareTo(
@@ -320,7 +321,7 @@
     }
  
     /**
-     * <p>Adds a [EMAIL PROTECTED] ConverterBean} and assigns the composition 
parent</p>
+     * <p>Adds a [EMAIL PROTECTED] ConverterBean} and assigns the composition 
parent.</p>
      */
     public void addConverter(ConverterBean bean) {
         if (bean.getJsfid() != null) {
@@ -359,7 +360,7 @@
     }
 
     /**
-     * <p>Adds a [EMAIL PROTECTED] ValidatorBean} and assigns the composition 
parent</p>
+     * <p>Adds a [EMAIL PROTECTED] ValidatorBean} and assigns the composition 
parent.</p>
      */    
     public void addValidator(ValidatorBean bean) {
         if (bean.getJsfid() != null) {
@@ -517,7 +518,7 @@
     }
     
     /**
-     * <p>Returns the unique meta component identifier</p>
+     * <p>Returns the unique meta component identifier.</p>
      */    
     public String getJsfid() {
         return jsfid;
@@ -534,35 +535,35 @@
     }
     
     /**
-     * <p>Sets the unique meta component identifier</p>
+     * <p>Sets the unique meta component identifier.</p>
      */
     public void setJsfid(String string) {
         jsfid = string;
     }
     
     /**
-     * <p>Returns the parent component that aggregates this object</p>
+     * <p>Returns the parent component that aggregates this object.</p>
      */
     public ComponentBean getHasAParent() {
         return hasAParent;
     }
     
     /**
-     * <p>Returns the parent component that generalizes this object</p>
+     * <p>Returns the parent component that generalizes this object.</p>
      */
     public ComponentBean getIsAParent() {
         return isAParent;
     }
  
     /**
-     * <p>Sets the parent that owns this component</p>
+     * <p>Sets the parent that owns this component.</p>
      */    
     public void setHasAParent(ComponentBean bean) {
         hasAParent = bean;
     }
 
     /**
-     * <p>Sets the component that this instance extends</p>
+     * <p>Sets the component that this instance extends.</p>
      */    
     public void setIsAParent(ComponentBean bean) {
         isAParent = bean;
@@ -570,7 +571,7 @@
     
     /**
      * <p>Returns a xpath like string describing how this component
-     * fits into the overall composition</p>
+     * fits into the overall composition.</p>
      */
     public StringBuffer getHasAClientId() {
         StringBuffer id = null;
@@ -604,7 +605,7 @@
     
     /**
      * <p>Returns a boolean flag indicating that the meta inheritances
-     * has been resolved</p>
+     * has been resolved.</p>
      */    
     public boolean isInheritanceFinal() {
         return isInheritanceFinal;

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/beans/ComponentConfigBean.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/beans/ComponentConfigBean.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/beans/ComponentConfigBean.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/beans/ComponentConfigBean.java
 Sat Sep 24 20:13:37 2005
@@ -221,19 +221,21 @@
     }
         
     /**
-     * <p>Returns the web container ServletContext</p>
+     * <p>Returns the web container ServletContext.</p>
      */
     public ServletContext getServletContext() {
         return context;
     }
     
     /**
-     * <p>Collection holding all the top-level components defined in the XML 
config files</p>
+     * <p>Collection holding all the top-level components defined in the XML 
+     * config files.</p>
      */    
     protected Map displayElements = null;
     
     /**
-     * <p>Constructor initializes the <code>displayElements</code> 
collection</p>
+     * <p>Constructor initializes the <code>displayElements</code> 
+     * collection.</p>
      */
     public ComponentConfigBean() {
         displayElements = new TreeMap();
@@ -405,7 +407,7 @@
     
     /**
      * </p>This overload handles fixing up {link AttributeBean}
-     * inheritance</p>
+     * inheritance.</p>
      */
     protected void realizingInheritance(AttributeBean a) {
         
@@ -681,8 +683,8 @@
     }
     
     /**
-     * <p>Returns a StringBuffer with an xpath like expression of 
<code>jsfid</code>
-     * that describes the Stack of [EMAIL PROTECTED] ComponentBean}
+     * <p>Returns a StringBuffer with an xpath like expression of 
+     * <code>jsfid</code> that describes the Stack of [EMAIL PROTECTED] 
ComponentBean}.
      * </p> 
      */
     public StringBuffer describeRelationships(Stack heritage) {

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/beans/ConfigBean.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/beans/ConfigBean.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/beans/ConfigBean.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/beans/ConfigBean.java
 Sat Sep 24 20:13:37 2005
@@ -57,19 +57,19 @@
     public ComponentBean getElement(String id);
     /**
      * <p>Returns <code>true</code> if the <code>jsfid</code> can be
-     * used by the <code>getElement(jsfid)</code> to return a [EMAIL 
PROTECTED] ComponentBean}
-     * </p>   
+     * used by the <code>getElement(jsfid)</code> to return a 
+     * [EMAIL PROTECTED] ComponentBean}.</p>
      */
     public boolean validMoniker(String id);
     /**
      * <p>A ordering weight used by the [EMAIL PROTECTED] ConfigBeanFactory}
      * for determining the ConfigBean that will return a [EMAIL PROTECTED] 
ComponentBean}
-     * for a <code>jsfid</code>
+     * for a <code>jsfid</code>.
      * </p>
      */
     public int getWeight();
     /**
-     * <p>Initialization method passing the <code>ServletContext</code></p>
+     * <p>Initialization method passing the <code>ServletContext</code>.</p>
      */
     public void init(ServletContext context);
     /**

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/beans/ElementBean.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/beans/ElementBean.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/beans/ElementBean.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/config/beans/ElementBean.java
 Sat Sep 24 20:13:37 2005
@@ -59,8 +59,9 @@
     }
     
     /**
-     * <p>This is an override of the [EMAIL PROTECTED] ComponentBean} making 
the <code>renderId</code> the
-     * ordering identifier instead of the <code>jsfid</code></p>
+     * <p>This is an override of the [EMAIL PROTECTED] ComponentBean} making 
the 
+     * <code>renderId</code> the ordering identifier instead of the 
+     * <code>jsfid</code>.</p>
      */
     public int compareTo(Object obj) {
         ElementBean item = (ElementBean) obj;

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/AttributeTokenizer.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/AttributeTokenizer.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/AttributeTokenizer.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/AttributeTokenizer.java
 Sat Sep 24 20:13:37 2005
@@ -90,7 +90,7 @@
     /**
      * <p>
      * Overloaded constructor that is passed the complete document and the
-     * starting and ending offset of the node body within the document
+     * starting and ending offset of the node body within the document.
      * </p>
      */
     public AttributeTokenizer(StringBuffer buffer, int beginOffset,
@@ -235,8 +235,8 @@
     
     /**
      * <p>
-     * Builds a <code>ArrayList</code> of [EMAIL PROTECTED] AttributeEntry} 
instances
-     * identifying name and value pairs
+     * Builds an <code>ArrayList</code> of [EMAIL PROTECTED] AttributeEntry} 
instances
+     * identifying name and value pairs.
      * </p>
      */
     protected synchronized void parse(ArrayList tokenIndex) {

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/Node.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/Node.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/Node.java 
(original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/Node.java 
Sat Sep 24 20:13:37 2005
@@ -93,15 +93,15 @@
     
     /**
      * <p>Returns <code>true</code> if the node has a beginning and ending
-     * marker</p>
+     * marker.</p>
      */
     public boolean isWellFormed() {
         return isWellFormed;
     }
     
     /**
-     * <p>Sets a boolean flag that is <code>true</code> if the node has a 
beginning
-     * and ending marker</p>
+     * <p>Sets a boolean flag that is <code>true</code> if the node has a 
+     * beginning and ending marker.</p>
      */
     public void setWellFormed(boolean isWellFormed) {
         this.isWellFormed = isWellFormed;
@@ -109,28 +109,28 @@
 
     /**
      * <p>Returns the parent of the node or <code>null</code> if the node 
-     * is a top-level/root node</p>
+     * is a top-level/root node.</p>
      */
     public Node getParent() {
         return parent;
     }
     
     /**
-     * <p>Sets the parent node</p>
+     * <p>Sets the parent node.</p>
      */
     public void setParent(Node parent) {
         this.parent = parent;
     }
     
     /**
-     * <p>Returns a <code>List</code> of child nodes</code></p>
+     * <p>Returns a <code>List</code> of child nodes.</p>
      */
     public List getChildren() {
         return children;
     }
     
     /**
-     * <p>Adds a child node to the <code>children</code> collection</p>
+     * <p>Adds a child node to the <code>children</code> collection.</p>
      */
     public void addChild(Node child) {
         child.setParent(this);
@@ -139,7 +139,7 @@
     
     /**
      * <p>Overloaded constructor that requires a [EMAIL PROTECTED] Token} 
object 
-     * in the formal parameter</p>
+     * in the formal parameter.</p>
      */
     public Node(Token token) {
         this.token = token;
@@ -154,70 +154,70 @@
     }
     
     /**
-     * <p>Returns a <code>true</code> value if this node is a ending marker</p>
+     * <p>Returns a <code>true</code> value if this node is a ending 
marker.</p>
      */
     public boolean isEnd() {
         return isEnd;
     }
     
     /**
-     * <p>Sets the flag indicating that this node is a ending marker</p>
+     * <p>Sets the flag indicating that this node is a ending marker.</p>
      */
     public void setEnd(boolean isEnd) {
         this.isEnd = isEnd;
     }
     
     /**
-     * <p>Returns a Map collection of node attributes</p>
+     * <p>Returns a Map collection of node attributes.</p>
      */
     public Map getAttributes() {
         return attributes;
     }
     
     /**
-     * <p>Sets a Map collection of Node attributes</p>
+     * <p>Sets a Map collection of Node attributes.</p>
      */
     public void setAttributes(Map attributes) {
         this.attributes = attributes;
     }
     
     /**
-     * <p>Returns <code>true</code> if the node is a beginning marker</p>
+     * <p>Returns <code>true</code> if the node is a beginning marker.</p>
      */
     public boolean isStart() {
         return isStart;
     }
     
     /**
-     * <p>Sets a boolean flag indicating that the node is a beginning 
marker</p>
+     * <p>Sets a boolean flag indicating that the node is a beginning 
marker.</p>
      */
     public void setStart(boolean isStart) {
         this.isStart = isStart;
     }
     
     /**
-     * <p>Returns the node name</p>
+     * <p>Returns the node name.</p>
      */
     public String getName() {
         return name;
     }
     
     /**
-     * <p>Sets the node name</p>
+     * <p>Sets the node name.</p>
      */
     public void setName(String name) {
         this.name = name;
     }
     
     /**
-     * <p>Returns the qualified node name</p>
+     * <p>Returns the qualified node name.</p>
      */
     public String getQname() {
         return qname;
     }
     
     /**
-     * <p>Sets the qualified node name</p>
+     * <p>Sets the qualified node name.</p>
      */
     public void setQname(String qname) {
         this.qname = qname;
@@ -242,8 +242,8 @@
     }
 
     /**
-     * <p> Returns the <code>true</code> if the node is
-     * a comment; otherwise; the default is <code>false</code>
+     * <p> Returns <code>true</code> if the node is
+     * a comment; otherwise; the default is <code>false</code>.
      * </p>.
      */
     public boolean isComment() {

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/Parser.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/Parser.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/Parser.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/Parser.java
 Sat Sep 24 20:13:37 2005
@@ -146,7 +146,7 @@
     /**
      * <p>
      * Determines if a HTML nodeName is a type of tag that can optionally have 
a
-     * ending tag
+     * ending tag.
      * </p>
      * 
      * @param nodeName the name of the html node
@@ -402,7 +402,7 @@
     /**
      * <p>
      * Checks to see if the nodeName is within the 
<code>SELF_TERMINATING</code>
-     * table of values
+     * table of values.
      * </p>
      * 
      * @param nodeName to check for self termination

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/Token.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/Token.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/Token.java 
(original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/Token.java 
Sat Sep 24 20:13:37 2005
@@ -28,12 +28,12 @@
 public interface Token {
     
     /**
-     * <p>Beginning offset of the token within the document</p>
+     * <p>Beginning offset of the token within the document.</p>
      */
     public int getBeginOffset();
     
     /**
-     * <p>Ending offset of the token within the document</p>
+     * <p>Ending offset of the token within the document.</p>
      */
     public int getEndOffset();
     

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/Builder.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/Builder.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/Builder.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/Builder.java
 Sat Sep 24 20:13:37 2005
@@ -66,7 +66,7 @@
     /**
      * <p>
      * This method returns <code>true</code> if the faces component that it
-     * builds allows children but the default is <code>false</code>
+     * builds allows children but the default is <code>false</code>.
      * </p>
      */    
     public boolean isChildrenAllowed() {
@@ -75,7 +75,7 @@
 
     /**
      * <p>
-     * Returns a <code>jsfid</code> for the component
+     * Returns a <code>jsfid</code> for the component.
      * </p>
      */
     protected abstract String getJsfid(Node node);
@@ -104,7 +104,7 @@
 
     /**
      * <p>
-     * Returns the next generated <code>renderId</code>
+     * Returns the next generated <code>renderId</code>.
      * <p>
      */    
     protected synchronized int getRenderId() {
@@ -202,7 +202,7 @@
  
     /**
      * <p>
-     * This call in invoked for any final processing
+     * This call is invoked for any final processing.
      * </p>
      */    
     protected void encodeEnd(Node node, ElementBean target,

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/BuilderFactory.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/BuilderFactory.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/BuilderFactory.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/BuilderFactory.java
 Sat Sep 24 20:13:37 2005
@@ -54,7 +54,7 @@
     /**
      * <p>
      * Returns catalog <code>Globals.BUILDER_CATALOG_NAME</code> from file
-     * <code>Globals.BUILDER_RESOURCE_NAME</code>
+     * <code>Globals.BUILDER_RESOURCE_NAME</code>.
      * </p>
      */    
     protected static Catalog getCatalog() throws Exception {

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/FormBuilder.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/FormBuilder.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/FormBuilder.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/FormBuilder.java
 Sat Sep 24 20:13:37 2005
@@ -25,7 +25,7 @@
 /**
  * <p>
  * Builds a form [EMAIL PROTECTED] 
org.apache.shale.clay.config.beans.ElementBean} from a
- * HTML [EMAIL PROTECTED] Node}
+ * HTML [EMAIL PROTECTED] Node}.
  * </p>
  */
 public class FormBuilder extends Builder {
@@ -43,7 +43,7 @@
     /**
      * <p>
      * Returns the <code>jsfid</code> for the
-     * [EMAIL PROTECTED] org.apache.shale.clay.config.beans.ElementBean}
+     * [EMAIL PROTECTED] org.apache.shale.clay.config.beans.ElementBean}.
      * </p>
      */   
     protected String getJsfid(Node node) {
@@ -53,7 +53,7 @@
     /**
      * <p>
      * Returns the JSF componentType of <code>javax.faces.HtmlForm</code> to
-     * populate the [EMAIL PROTECTED] 
org.apache.shale.clay.config.beans.ElementBean}
+     * populate the [EMAIL PROTECTED] 
org.apache.shale.clay.config.beans.ElementBean}.
      * </p>
      */    
     protected String getComponentType(Node node) {

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/InputTextBuilder.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/InputTextBuilder.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/InputTextBuilder.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/InputTextBuilder.java
 Sat Sep 24 20:13:37 2005
@@ -28,7 +28,7 @@
  * <p>
  * Builds a [EMAIL PROTECTED] ElementBean} from a HTML [EMAIL PROTECTED] Node} 
where the
  * [EMAIL PROTECTED] 
org.apache.shale.clay.parser.builder.chain.TextareaBuilderRule}
- * handles the mapping
+ * handles the mapping.
  * </p>
  */
 public class InputTextBuilder extends Builder {
@@ -57,7 +57,7 @@
    
     /**
      * <p>
-     * Returns the <code>jsfid</code> used to populate the [EMAIL PROTECTED] 
ElementBean}
+     * Returns the <code>jsfid</code> used to populate the [EMAIL PROTECTED] 
ElementBean}.
      * </p>
      */    
     protected String getJsfid(Node node) {
@@ -68,7 +68,7 @@
      * <p>
      * Returns the JSF componentType of
      * <code>javax.faces.HtmlInputTextarea</code> used to define the
-     * [EMAIL PROTECTED] ElementBean} from the HTML [EMAIL PROTECTED] Node}
+     * [EMAIL PROTECTED] ElementBean} from the HTML [EMAIL PROTECTED] Node}.
      * </p>
      */    
     protected String getComponentType(Node node) {

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/InputTextareaBuilder.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/InputTextareaBuilder.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/InputTextareaBuilder.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/InputTextareaBuilder.java
 Sat Sep 24 20:13:37 2005
@@ -27,7 +27,7 @@
  * <p>
  * Builds a [EMAIL PROTECTED] ElementBean} from a HTML [EMAIL PROTECTED] Node} 
where the
  * [EMAIL PROTECTED] 
org.apache.shale.clay.parser.builder.chain.TextareaBuilderRule}
- * handles the mapping
+ * handles the mapping.
  * </p>
  */
 public class InputTextareaBuilder extends Builder {
@@ -44,7 +44,7 @@
 
     /**
      * <p>
-     * Returns the <code>jsfid</code> used to populate the [EMAIL PROTECTED] 
ElementBean}
+     * Returns the <code>jsfid</code> used to populate the [EMAIL PROTECTED] 
ElementBean}.
      * </p>
      */
     protected String getJsfid(Node node) {
@@ -55,7 +55,7 @@
      * <p>
      * Returns the JSF componentType of
      * <code>javax.faces.HtmlInputTextarea</code> used to define the
-     * [EMAIL PROTECTED] ElementBean} from the HTML [EMAIL PROTECTED] Node}
+     * [EMAIL PROTECTED] ElementBean} from the HTML [EMAIL PROTECTED] Node}.
      * </p>
      */
     protected String getComponentType(Node node) {

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/OutputLinkBuilder.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/OutputLinkBuilder.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/OutputLinkBuilder.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/OutputLinkBuilder.java
 Sat Sep 24 20:13:37 2005
@@ -44,7 +44,7 @@
 
     /**
      * <p>
-     * Returns a jsf component type of <code>javax.faces.HtmlOutputLink</code>
+     * Returns a JSF component type of <code>javax.faces.HtmlOutputLink</code>.
      * </p>
      */
     protected String getComponentType(Node node) {
@@ -54,7 +54,7 @@
     /**
      * <p>
      * Returns a <code>jsfid</code> that will populate the target
-     * [EMAIL PROTECTED] org.apache.shale.clay.config.beans.ElementBean}
+     * [EMAIL PROTECTED] org.apache.shale.clay.config.beans.ElementBean}.
      * </p>
      */
     protected String getJsfid(Node node) {
@@ -64,7 +64,7 @@
     /**
      * <p>
      * Returns <code>true</code> meaning that the target JSF component can
-     * have children
+     * have children.
      * </p>
      */
     public boolean isChildrenAllowed() {

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/SelectBooleanCheckboxBuilder.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/SelectBooleanCheckboxBuilder.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/SelectBooleanCheckboxBuilder.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/SelectBooleanCheckboxBuilder.java
 Sat Sep 24 20:13:37 2005
@@ -46,7 +46,7 @@
     
     /**
      * <p>
-     * Returns a <code>jsfid</code> for the [EMAIL PROTECTED] ElementBean}
+     * Returns a <code>jsfid</code> for the [EMAIL PROTECTED] ElementBean}.
      * </p>
      */
     protected String getJsfid(Node node) {

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/SelectItemBuilder.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/SelectItemBuilder.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/SelectItemBuilder.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/SelectItemBuilder.java
 Sat Sep 24 20:13:37 2005
@@ -57,7 +57,7 @@
     /**
      * <p>
      * Returns the JSF component type of <code>javax.faces.SelectItem</code>
-     * that will populate a [EMAIL PROTECTED] ElementBean} and create an html 
option
+     * that will populate a [EMAIL PROTECTED] ElementBean} and create an html 
option.
      * </p>
      */    
     protected String getComponentType(Node node) {

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/SelectItemsBuilder.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/SelectItemsBuilder.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/SelectItemsBuilder.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/SelectItemsBuilder.java
 Sat Sep 24 20:13:37 2005
@@ -46,7 +46,7 @@
     /**
      * <p>
      * Returns a <code>jsfid</code> used to populate the target
-     * [EMAIL PROTECTED] ElementBean}
+     * [EMAIL PROTECTED] ElementBean}.
      * </p>
      */    
     protected String getJsfid(Node node) {

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/SelectManyMenuBuilder.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/SelectManyMenuBuilder.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/SelectManyMenuBuilder.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/SelectManyMenuBuilder.java
 Sat Sep 24 20:13:37 2005
@@ -46,7 +46,7 @@
      * <p>
      * Returns the JSF component type of
      * <code>javax.faces.HtmlSelectManyMenu</code> that will populate the
-     * target [EMAIL PROTECTED] org.apache.shale.clay.config.beans.ElementBean}
+     * target [EMAIL PROTECTED] 
org.apache.shale.clay.config.beans.ElementBean}.
      * </p>
      */    
     protected String getComponentType(Node node) {
@@ -56,7 +56,7 @@
     /**
      * <p>
      * Returns the <code>jsfid</code> for the target
-     * [EMAIL PROTECTED] org.apache.shale.clay.config.beans.ElementBean}
+     * [EMAIL PROTECTED] org.apache.shale.clay.config.beans.ElementBean}.
      * </p>
      */    
     protected String getJsfid(Node node) {
@@ -66,7 +66,7 @@
     /**
      * <p>
      * Returns <code>true</code> indicating that the multi-select component
-     * can have children
+     * can have children.
      * </p>
      */    
     public boolean isChildrenAllowed() {

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/VerbatimBuilder.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/VerbatimBuilder.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/VerbatimBuilder.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/parser/builder/VerbatimBuilder.java
 Sat Sep 24 20:13:37 2005
@@ -48,7 +48,7 @@
 
     /**
      * <p>
-     * Returns the <code>jsfid</code> for the target [EMAIL PROTECTED] 
ElementBean}
+     * Returns the <code>jsfid</code> for the target [EMAIL PROTECTED] 
ElementBean}.
      * </p>
      */    
     protected String getJsfid(Node node) {
@@ -81,7 +81,7 @@
  
     /**
      * <p>
-     * Returns a jsf component type of <code>javax.faces.HtmlOutputText</code>
+     * Returns a JSF component type of <code>javax.faces.HtmlOutputText</code>.
      * </p>
      */    
     protected String getComponentType(Node node) {

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/taglib/ClayTag.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/taglib/ClayTag.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/taglib/ClayTag.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/taglib/ClayTag.java
 Sat Sep 24 20:13:37 2005
@@ -28,7 +28,7 @@
 public class ClayTag extends UIComponentTag {
     
     /**
-     * <p>Common logging utility instance </p>
+     * <p>Common logging utility instance.</p>
      */
     public static Log log = LogFactory.getLog(ClayTag.class);
     

Modified: 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/utils/PropUtils.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/utils/PropUtils.java?rev=291372&r1=291371&r2=291372&view=diff
==============================================================================
--- 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/utils/PropUtils.java
 (original)
+++ 
struts/shale/trunk/clay-plugin/src/java/org/apache/shale/clay/utils/PropUtils.java
 Sat Sep 24 20:13:37 2005
@@ -43,7 +43,8 @@
 
     
     /**
-     *  <p>A simple function that tries to convert one type into another<p>
+     *  <p>A simple function that tries to convert one type into another.</p>
+     *
      *  @param source object to convert from
      *  @param targetType object class type to convert the source to
      *  @return an instance of the target object holding the value of the 
source instance



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to