Author: rdonkin
Date: Sun Oct 29 09:05:59 2006
New Revision: 468942

URL: http://svn.apache.org/viewvc?view=rev&rev=468942
Log:
Fixed javadoc warnings

Modified:
    
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/ElementDescriptor.java
    
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/IntrospectionConfiguration.java
    
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/XMLUtils.java

Modified: 
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/ElementDescriptor.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/ElementDescriptor.java?view=diff&rev=468942&r1=468941&r2=468942
==============================================================================
--- 
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/ElementDescriptor.java
 (original)
+++ 
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/ElementDescriptor.java
 Sun Oct 29 09:05:59 2006
@@ -234,9 +234,7 @@
 
     /**
      * Removes an attribute descriptor from this element descriptor. 
-     * @param descriptor the <code>AttributeDescriptor</code> that will be 
removed.
-     * 
-     * @param descriptor
+     * @param descriptor the <code>AttributeDescriptor</code> to be removed, 
not null
      */
     public void removeAttributeDescriptor(AttributeDescriptor descriptor) {
         getAttributeList().remove(descriptor);
@@ -267,7 +265,8 @@
      * Returns an attribute descriptor with a given name or null.
      *  
      * @param name to search for; will be checked against the attributes' 
qualified name.
-     * @return
+     * @return <code>AttributeDescriptor</code> with the given name,
+     * or null if no descriptor has that name
      */
     public AttributeDescriptor getAttributeDescriptor(final String name) {
         for (int i = 0, size = attributeDescriptors.length; i < size; i++) {

Modified: 
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/IntrospectionConfiguration.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/IntrospectionConfiguration.java?view=diff&rev=468942&r1=468941&r2=468942
==============================================================================
--- 
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/IntrospectionConfiguration.java
 (original)
+++ 
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/IntrospectionConfiguration.java
 Sun Oct 29 09:05:59 2006
@@ -460,7 +460,7 @@
      * This is used to suppress attributes, e.g. for versioning.
      * 
      * @since 0.8
-     * @param the strategy 
+     * @param attributeSuppressionStrategy the strategy 
      */
     public void setAttributeSuppressionStrategy(
             AttributeSuppressionStrategy attributeSuppressionStrategy) {

Modified: 
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/XMLUtils.java
URL: 
http://svn.apache.org/viewvc/jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/XMLUtils.java?view=diff&rev=468942&r1=468941&r2=468942
==============================================================================
--- 
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/XMLUtils.java
 (original)
+++ 
jakarta/commons/proper/betwixt/trunk/src/java/org/apache/commons/betwixt/XMLUtils.java
 Sun Oct 29 09:05:59 2006
@@ -355,8 +355,7 @@
      * @param bufferedContent the body content within a buffer 
      * whose character data should 
      * be escaped in a way appropriate for use within a <code>CDATA</code>
-     * section of xml.
-     * @return escaped character data, not null
+     * section of xml
      */
     public static final void escapeCDATAContent(StringBuffer bufferedContent) {
         for (int i=2, size = bufferedContent.length(); i<size; i++) {



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

Reply via email to