twl         2002/11/19 16:49:47

  Modified:    java/src/org/apache/xerces/dom DOMNormalizer.java
                        NodeImpl.java
               java/src/org/apache/xerces/impl/xs/dom DOMNodePool.java
                        DocumentImpl.java
               java/src/org/apache/xerces/impl/dtd
                        XMLDTDValidatorFilter.java DTDGrammar.java
               java/src/org/apache/xerces/impl/dv XSSimpleType.java
               java/src/org/apache/xerces/impl/xs/models XSDFACM.java
               java/src/org/apache/xerces/impl/dv/xs DateDV.java
               java/src/org/apache/xerces/util SymbolHash.java
               java/src/org/apache/xerces/impl/xpath/regex REUtil.java
  Log:
  fix more javadoc warnings
  
  Revision  Changes    Path
  1.18      +2 -2      xml-xerces/java/src/org/apache/xerces/dom/DOMNormalizer.java
  
  Index: DOMNormalizer.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/dom/DOMNormalizer.java,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- DOMNormalizer.java        25 Sep 2002 18:40:34 -0000      1.17
  +++ DOMNormalizer.java        20 Nov 2002 00:49:46 -0000      1.18
  @@ -286,7 +286,7 @@
        * 
        * @param node   Modified node or null. If node is returned, we need
        *               to normalize again starting on the node returned.
  -     * @return 
  +     * @return  the normalized Node
        */
       protected Node normalizeNode (Node node){
   
  
  
  
  1.60      +3 -3      xml-xerces/java/src/org/apache/xerces/dom/NodeImpl.java
  
  Index: NodeImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/dom/NodeImpl.java,v
  retrieving revision 1.59
  retrieving revision 1.60
  diff -u -r1.59 -r1.60
  --- NodeImpl.java     19 Nov 2002 01:41:36 -0000      1.59
  +++ NodeImpl.java     20 Nov 2002 00:49:46 -0000      1.60
  @@ -1189,7 +1189,7 @@
        * 
        * @param namespaceURI
        * @param useDefault
  -     * @return 
  +     * @return the prefix for the namespace
        */
       public String lookupNamespacePrefix(String namespaceURI, 
                                           boolean useDefault){
  @@ -1241,7 +1241,7 @@
        * Use lookupNamespaceURI(null) to lookup the default namespace
        * 
        * @param namespaceURI
  -     * @return 
  +     * @return th URI for the namespace
        * @since DOM Level 3
        */
       public String lookupNamespaceURI(String specifiedPrefix) {
  
  
  
  1.3       +4 -4      
xml-xerces/java/src/org/apache/xerces/impl/xs/dom/DOMNodePool.java
  
  Index: DOMNodePool.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/xs/dom/DOMNodePool.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DOMNodePool.java  6 Aug 2002 19:21:43 -0000       1.2
  +++ DOMNodePool.java  20 Nov 2002 00:49:47 -0000      1.3
  @@ -104,7 +104,7 @@
        * This method creates a new element node or provides a 
        * free element node if such exists in the pool.
        * 
  -     * @return 
  +     * @return usable element node
        */
       public final  ElementNSImpl getElementNode(){
           int     chunk       = fElementIndex >> CHUNK_SHIFT;
  @@ -139,7 +139,7 @@
        * This methods creates text node or provides a free
        * text node if such exists in the pool.
        * 
  -     * @return 
  +     * @return a usable TextNode
        */
       public final  TextImpl getTextNode(){
           int     chunk       = fTextNodeIndex >> CHUNK_SHIFT;
  @@ -174,7 +174,7 @@
        * This methods creates attribute node or provides a free
        * attribute node if such exists in the pool.
        * 
  -     * @return 
  +     * @return a usable attribute node
        */
       public final  AttrNSImpl getAttrNode(){
           int     chunk       = fAttrNodeIndex >> CHUNK_SHIFT;
  
  
  
  1.3       +3 -3      
xml-xerces/java/src/org/apache/xerces/impl/xs/dom/DocumentImpl.java
  
  Index: DocumentImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/xs/dom/DocumentImpl.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DocumentImpl.java 3 Apr 2002 23:48:27 -0000       1.2
  +++ DocumentImpl.java 20 Nov 2002 00:49:47 -0000      1.3
  @@ -110,7 +110,7 @@
        * Create a text node. If node pool is available use text node from the pool.
        * 
        * @param data
  -     * @return 
  +     * @return a usable TextNode
        */
       public Text createTextNode(String data) {
           if (fNodePool != null) {
  @@ -129,7 +129,7 @@
        * @param namespaceURI
        * @param qualifiedName
        * @param localName
  -     * @return 
  +     * @return a new attribute node
        * @exception DOMException
        */
       public Attr createAttributeNS(String namespaceURI, String qualifiedName,
  
  
  
  1.2       +3 -3      
xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLDTDValidatorFilter.java
  
  Index: XMLDTDValidatorFilter.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLDTDValidatorFilter.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XMLDTDValidatorFilter.java        12 Sep 2002 21:56:57 -0000      1.1
  +++ XMLDTDValidatorFilter.java        20 Nov 2002 00:49:47 -0000      1.2
  @@ -73,14 +73,14 @@
       /**
        * Returns true if the validator has a DTD grammar
        * 
  -     * @return 
  +     * @return true if the validator has a DTD grammar
        */
       public boolean hasGrammar();
   
       /**
        * Return true if validator must validate the document
        * 
  -     * @return 
  +     * @return true if validator must validate the document
        */
       public boolean validate();
   
  
  
  
  1.21      +2 -2      xml-xerces/java/src/org/apache/xerces/impl/dtd/DTDGrammar.java
  
  Index: DTDGrammar.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dtd/DTDGrammar.java,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- DTDGrammar.java   21 Oct 2002 11:09:39 -0000      1.20
  +++ DTDGrammar.java   20 Nov 2002 00:49:47 -0000      1.21
  @@ -1496,7 +1496,7 @@
        *
        * @param elementDeclIndex
        *
  -     * @ return String
  +     * @return String
        */
       public String getContentSpecAsString(int elementDeclIndex){
   
  
  
  
  1.11      +2 -2      xml-xerces/java/src/org/apache/xerces/impl/dv/XSSimpleType.java
  
  Index: XSSimpleType.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/XSSimpleType.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- XSSimpleType.java 25 Oct 2002 16:42:30 -0000      1.10
  +++ XSSimpleType.java 20 Nov 2002 00:49:47 -0000      1.11
  @@ -196,7 +196,7 @@
        * Check whether two actual values are equal.
        *
        * @param value1  the first value
  -     * @prarm value2  the second value
  +     * @param value2  the second value
        * @return        true if the two value are equal
        */
       public boolean isEqual(Object value1, Object value2);
  
  
  
  1.8       +2 -2      
xml-xerces/java/src/org/apache/xerces/impl/xs/models/XSDFACM.java
  
  Index: XSDFACM.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/xs/models/XSDFACM.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- XSDFACM.java      8 Jul 2002 16:26:00 -0000       1.7
  +++ XSDFACM.java      20 Nov 2002 00:49:47 -0000      1.8
  @@ -266,7 +266,7 @@
        * @param stateStack  stack to store the previous state
        * @param curPos      the current position of the stack
        *
  -     * @return:  null if transition is invalid; otherwise the Object corresponding 
to the
  +     * @return  null if transition is invalid; otherwise the Object corresponding 
to the
        *      XSElementDecl or XSWildcardDecl identified.  Also, the
        *      state array will be modified to include the new state; this so that the 
validator can
        *      store it away.
  
  
  
  1.7       +2 -2      xml-xerces/java/src/org/apache/xerces/impl/dv/xs/DateDV.java
  
  Index: DateDV.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/DateDV.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- DateDV.java       18 Nov 2002 23:10:10 -0000      1.6
  +++ DateDV.java       20 Nov 2002 00:49:47 -0000      1.7
  @@ -64,7 +64,7 @@
    * Validator for <date> datatype (W3C Schema datatypes)
    *
    * @author Elena Litani
  - * @Gopal Sharma, SUN Microsystems Inc.
  + * @author Gopal Sharma, SUN Microsystems Inc.
    *
    * @version $Id$
    */
  
  
  
  1.6       +3 -3      xml-xerces/java/src/org/apache/xerces/util/SymbolHash.java
  
  Index: SymbolHash.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/util/SymbolHash.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- SymbolHash.java   16 May 2002 18:25:56 -0000      1.5
  +++ SymbolHash.java   20 Nov 2002 00:49:47 -0000      1.6
  @@ -139,7 +139,7 @@
        * Get the value associated with the given key.
        * 
        * @param key
  -     * @return
  +     * @return the value associated with the given key.
        */
       public Object get(Object key) {
           int bucket = (key.hashCode() & 0x7FFFFFFF) % fTableSize;
  @@ -153,7 +153,7 @@
       /**
        * Get the number of key/value pairs stored in this table.
        * 
  -     * @return
  +     * @return the number of key/value pairs stored in this table.
        */
       public int getLength() {
           return fNum;
  
  
  
  1.7       +2 -2      
xml-xerces/java/src/org/apache/xerces/impl/xpath/regex/REUtil.java
  
  Index: REUtil.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/xpath/regex/REUtil.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- REUtil.java       9 Aug 2002 15:18:17 -0000       1.6
  +++ REUtil.java       20 Nov 2002 00:49:47 -0000      1.7
  @@ -288,7 +288,7 @@
        * Creates a RegularExpression instance.
        * This method caches created instances.
        *
  -     * @seeq RegularExpression#RegularExpression(java.lang.String, java.lang.String)
  +     * @see RegularExpression#RegularExpression(java.lang.String, java.lang.String)
        */
       public static RegularExpression createRegex(String pattern, String options)
           throws ParseException {
  
  
  

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

Reply via email to