Author: niallp
Date: Tue Mar 14 15:27:26 2006
New Revision: 385929

URL: http://svn.apache.org/viewcvs?rev=385929&view=rev
Log:
Minor javadoc changes only - fix the few javadoc warnings.

Modified:
    
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/Parser.java
    
struts/shale/trunk/core-library/src/java/org/apache/shale/remoting/Mechanism.java
    
struts/shale/trunk/core-library/src/java/org/apache/shale/view/faces/CallbacksFactory.java

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=385929&r1=385928&r2=385929&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
 Tue Mar 14 15:27:26 2006
@@ -235,8 +235,9 @@
     
     /**
      * <p>
-     * Builds an <code>ArrayList</code> of [EMAIL PROTECTED] AttributeEntry} 
instances
-     * identifying name and value pairs.
+     * Builds an <code>ArrayList</code> of 
+     * [EMAIL PROTECTED] AttributeTokenizer.AttributeEntry} instances 
identifying
+     * name and value pairs.
      * </p>
      */
     protected synchronized void parse(ArrayList tokenIndex) {
@@ -374,7 +375,7 @@
         
         /**
          * <p>Constructor parses the node body into a collection of
-         * [EMAIL PROTECTED] AttributeEntry}.
+         * [EMAIL PROTECTED] AttributeTokenizer.AttributeEntry}.
          * </p>
          */
         public TokenIterator() {
@@ -384,8 +385,8 @@
         }
         
         /**
-         * <p>Retuns <code>true</code> if there are more [EMAIL PROTECTED] 
AttributeEntry}
-         * in the collection.
+         * <p>Retuns <code>true</code> if there are more 
+         * [EMAIL PROTECTED] AttributeTokenizer.AttributeEntry} in the 
collection.
          * </p>
          */
         public boolean hasNext() {
@@ -393,7 +394,8 @@
         }
         
         /**
-         * <p>Retuns the next [EMAIL PROTECTED] AttributeEntry} in the 
collection.
+         * <p>Retuns the next [EMAIL PROTECTED] 
AttributeTokenizer.AttributeEntry}
+         * in the collection.
          * </p>
          */
         public Object next() {
@@ -414,7 +416,7 @@
     /**
      * <p>Returns an instance of an <code>Iterator</code> that
      * will enumerate attributes in the document where the attributes
-     * are represented by a [EMAIL PROTECTED] AttributeEntry} instance.
+     * are represented by a [EMAIL PROTECTED] 
AttributeTokenizer.AttributeEntry} instance.
      * </p>
      */
     public Iterator iterator() {

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=385929&r1=385928&r2=385929&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
 Tue Mar 14 15:27:26 2006
@@ -443,20 +443,20 @@
 
     
     /**
-     * <p>Declare an array of [EMAIL PROTECTED] Rule}s that validate an ending 
[EMAIL PROTECTED] Token}.</p>
+     * <p>Declare an array of [EMAIL PROTECTED] Parser.Rule}s that validate an 
ending [EMAIL PROTECTED] Token}.</p>
      */
     private static Rule[] END_TAG_RULES = {new Rule('<', true, 0, true),  
         new Rule('/', true, 1, true),
         new Rule('>', false, -1, true)};
     
     /**
-     * <p>Declare an array of [EMAIL PROTECTED] Rule}s that validate self 
terminating [EMAIL PROTECTED] Token}.</p>
+     * <p>Declare an array of [EMAIL PROTECTED] Parser.Rule}s that validate 
self terminating [EMAIL PROTECTED] Token}.</p>
      */
     private static Rule[] SELF_TERM_TAG_RULES = {new Rule('<', true, 0, true),
         new Rule('/', false, -2, true),
         new Rule('>', false, -1, true)};
     /**
-     * <p>Declare an array of [EMAIL PROTECTED] Rule}s that validate self 
contained comment [EMAIL PROTECTED] Token}.</p>
+     * <p>Declare an array of [EMAIL PROTECTED] Parser.Rule}s that validate 
self contained comment [EMAIL PROTECTED] Token}.</p>
      */    
     private static Rule[] SELF_CONTAINED_COMMENT_RULES = {new Rule('<', true, 
0, true),
         new Rule('!', true, 1, true),
@@ -467,7 +467,7 @@
         new Rule('-', false, -3, true)};
     
     /**
-     * <p>Declare an array of [EMAIL PROTECTED] Rule}s that validate a begin 
comment [EMAIL PROTECTED] Token}.</p>
+     * <p>Declare an array of [EMAIL PROTECTED] Parser.Rule}s that validate a 
begin comment [EMAIL PROTECTED] Token}.</p>
      */    
     public static Rule[] BEGIN_COMMENT_TAG_RULES = {new Rule('<', true, 0, 
true),
         new Rule('!', true, 1, true),
@@ -475,21 +475,21 @@
         new Rule('-', true, 3, true)};
     
     /**
-     * <p>Declare an array of [EMAIL PROTECTED] Rule}s that validate an end 
comment [EMAIL PROTECTED] Token}.</p>
+     * <p>Declare an array of [EMAIL PROTECTED] Parser.Rule}s that validate an 
end comment [EMAIL PROTECTED] Token}.</p>
      */    
     public static Rule[] END_COMMENT_TAG_RULES = {new Rule('>', false, -1, 
true),
         new Rule('-', false, -2, true),
         new Rule('-', false, -3, true)};
     
     /**
-     * <p>Declare an array of [EMAIL PROTECTED] Rule}s that validate document 
type [EMAIL PROTECTED] Token}.</p>
+     * <p>Declare an array of [EMAIL PROTECTED] Parser.Rule}s that validate 
document type [EMAIL PROTECTED] Token}.</p>
      */    
     public static Rule[] DOCTYPE_TAG_RULES = {new Rule('<', true, 0, true),
         new Rule('!', true, 1, true),
         new Rule('>', false, -1, true)};
     
     /**
-     * <p>Declare an array of [EMAIL PROTECTED] Rule}s that validate a 
begining [EMAIL PROTECTED] Token}.</p>
+     * <p>Declare an array of [EMAIL PROTECTED] Parser.Rule}s that validate a 
begining [EMAIL PROTECTED] Token}.</p>
      */        
     public static Rule[] BEGIN_TAG_RULES = {new Rule('<', true, 0, true),
         new Rule('-', true, 1, false),
@@ -500,7 +500,7 @@
     
     
     /**
-     * <p>Declare an array of [EMAIL PROTECTED] Rule}s that validate JSP block 
[EMAIL PROTECTED] Token}.</p>
+     * <p>Declare an array of [EMAIL PROTECTED] Parser.Rule}s that validate 
JSP block [EMAIL PROTECTED] Token}.</p>
      */    
     private static Rule[] JSP_RULES = {new Rule('<', true, 0, true),
         new Rule('%', true, 1, true),
@@ -509,8 +509,8 @@
 
     
     /**
-     * <p>Declare an array of [EMAIL PROTECTED] Shape}s further defined by 
[EMAIL PROTECTED] Rule}s that 
-     * are used to determine the type of [EMAIL PROTECTED] Node} the [EMAIL 
PROTECTED] Token} defines.</p>
+     * <p>Declare an array of [EMAIL PROTECTED] Parser.Shape}s further defined 
by [EMAIL PROTECTED] Parser.Rule}s
+     *  that are used to determine the type of [EMAIL PROTECTED] Node} the 
[EMAIL PROTECTED] Token} defines.</p>
      */
     private static Shape[] NODE_SHAPES = {
         new Shape(false, true, false, END_TAG_RULES),
@@ -525,7 +525,7 @@
     
     /**
      * <p>Determine if the [EMAIL PROTECTED] Node} is a starting, ending, or 
body text
-     * tag. The array of [EMAIL PROTECTED] Shape}s are used to determine the 
type of 
+     * tag. The array of [EMAIL PROTECTED] Parser.Shape}s are used to 
determine the type of 
      * [EMAIL PROTECTED] Node} the [EMAIL PROTECTED] Token} representes.</p>
      */
     protected void discoverNodeShape(Node node) {
@@ -687,8 +687,8 @@
     }
  
     /**
-     * <p>Defines a parsing [EMAIL PROTECTED] Rule} used to determine
-     * the [EMAIL PROTECTED] Shape} of a [EMAIL PROTECTED] Node}.</p>
+     * <p>Defines a parsing [EMAIL PROTECTED] Parser.Rule} used to determine
+     * the [EMAIL PROTECTED] Parser.Shape} of a [EMAIL PROTECTED] Node}.</p>
      */
     static class Rule {
         /**
@@ -710,7 +710,7 @@
         /**
          * <p>A boolean value that determines the relational operator used
          * to compare the <code>mnemonic</code> to the [EMAIL PROTECTED] 
Token} begin
-         * or ending offset plus the [EMAIL PROTECTED] Rule} offset.  If the 
value
+         * or ending offset plus the [EMAIL PROTECTED] Parser.Rule} offset.  
If the value
          * is <code>true</code> the equals operator is used; otherwise,
          * the not equals operator is used in the comparison.</p>
          */
@@ -782,8 +782,8 @@
         private boolean isComment = false;
         
         /**
-         * <p>An array of [EMAIL PROTECTED] Rule}s used to determine if the 
[EMAIL PROTECTED] Node}
-         * matches the [EMAIL PROTECTED] Shape}.</p>
+         * <p>An array of [EMAIL PROTECTED] Parser.Rule}s used to determine if 
the
+         * [EMAIL PROTECTED] Node} matches the [EMAIL PROTECTED] 
Parser.Shape}.</p>
          */
         private Rule[] rules = null;
         
@@ -816,7 +816,7 @@
             return isComment;    
         }
         /**
-         * <p>Returns the [EMAIL PROTECTED] Rule}s that define the 
<code>isStart</code>, 
+         * <p>Returns the [EMAIL PROTECTED] Parser.Rule}s that define the 
<code>isStart</code>, 
          * <code>isEnd</code> and <code>isComment</code> characteristics.</p>
          */
         public Rule[] getRules() {

Modified: 
struts/shale/trunk/core-library/src/java/org/apache/shale/remoting/Mechanism.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/core-library/src/java/org/apache/shale/remoting/Mechanism.java?rev=385929&r1=385928&r2=385929&view=diff
==============================================================================
--- 
struts/shale/trunk/core-library/src/java/org/apache/shale/remoting/Mechanism.java
 (original)
+++ 
struts/shale/trunk/core-library/src/java/org/apache/shale/remoting/Mechanism.java
 Tue Mar 14 15:27:26 2006
@@ -75,7 +75,7 @@
 
     /**
      * <p>[EMAIL PROTECTED] Mechanism} indicating that the processor should 
serve a static
-     * resource from the web application archive of this web applicationl</p>
+     * resource from the web application archive of this web application.</p>
      */
     public static final Mechanism WEBAPP_RESOURCE = new 
Mechanism("WEBAPP_RESOURCE");
 

Modified: 
struts/shale/trunk/core-library/src/java/org/apache/shale/view/faces/CallbacksFactory.java
URL: 
http://svn.apache.org/viewcvs/struts/shale/trunk/core-library/src/java/org/apache/shale/view/faces/CallbacksFactory.java?rev=385929&r1=385928&r2=385929&view=diff
==============================================================================
--- 
struts/shale/trunk/core-library/src/java/org/apache/shale/view/faces/CallbacksFactory.java
 (original)
+++ 
struts/shale/trunk/core-library/src/java/org/apache/shale/view/faces/CallbacksFactory.java
 Tue Mar 14 15:27:26 2006
@@ -42,7 +42,7 @@
 
 
     /**
-     * <p>Return a suitable instance of this factory.</p.
+     * <p>Return a suitable instance of this factory.</p>
      */
     public static CallbacksFactory getInstance() {
         return new CallbacksFactory();



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

Reply via email to