You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2017/03/19 15:25:04 UTC

svn commit: r1787631 - in /webservices/axiom/trunk/axiom-api/src/main/java/org/apache/axiom/om: ds/custombuilder/CustomBuilder.java impl/OMMultipartWriter.java

Author: veithen
Date: Sun Mar 19 15:25:03 2017
New Revision: 1787631

URL: http://svn.apache.org/viewvc?rev=1787631&view=rev
Log:
Fix Javadoc errors.

Modified:
    webservices/axiom/trunk/axiom-api/src/main/java/org/apache/axiom/om/ds/custombuilder/CustomBuilder.java
    webservices/axiom/trunk/axiom-api/src/main/java/org/apache/axiom/om/impl/OMMultipartWriter.java

Modified: webservices/axiom/trunk/axiom-api/src/main/java/org/apache/axiom/om/ds/custombuilder/CustomBuilder.java
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/axiom-api/src/main/java/org/apache/axiom/om/ds/custombuilder/CustomBuilder.java?rev=1787631&r1=1787630&r2=1787631&view=diff
==============================================================================
--- webservices/axiom/trunk/axiom-api/src/main/java/org/apache/axiom/om/ds/custombuilder/CustomBuilder.java (original)
+++ webservices/axiom/trunk/axiom-api/src/main/java/org/apache/axiom/om/ds/custombuilder/CustomBuilder.java Sun Mar 19 15:25:03 2017
@@ -35,7 +35,7 @@ import javax.xml.stream.XMLStreamWriter;
  * When a matching element is encountered, the CustomBuilder will build an {@link OMDataSource}
  * for the builder.
  *
- * @see CustomBuilderSupport#registerCustomBuilder(Selector, CustomBuilder)
+ * @see CustomBuilderSupport#registerCustomBuilder(CustomBuilder.Selector, CustomBuilder)
  */
 public interface CustomBuilder {
     /**

Modified: webservices/axiom/trunk/axiom-api/src/main/java/org/apache/axiom/om/impl/OMMultipartWriter.java
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/axiom-api/src/main/java/org/apache/axiom/om/impl/OMMultipartWriter.java?rev=1787631&r1=1787630&r2=1787631&view=diff
==============================================================================
--- webservices/axiom/trunk/axiom-api/src/main/java/org/apache/axiom/om/impl/OMMultipartWriter.java (original)
+++ webservices/axiom/trunk/axiom-api/src/main/java/org/apache/axiom/om/impl/OMMultipartWriter.java Sun Mar 19 15:25:03 2017
@@ -86,7 +86,7 @@ public class OMMultipartWriter {
 
     /**
      * Start writing the root part of the MIME package. This method delegates to
-     * {@link MultipartBodyWriter#writePart(String, String, String)}, but computes the content type,
+     * {@link MultipartBodyWriter#writePart(String, String, String, List)}, but computes the content type,
      * content transfer encoding and content ID from the {@link OMOutputFormat}.
      * 
      * @return an output stream to write the content of the MIME part
@@ -99,7 +99,7 @@ public class OMMultipartWriter {
 
     /**
      * Start writing an attachment part of the MIME package. This method delegates to
-     * {@link MultipartBodyWriter#writePart(String, String, String)}, but computes the content transfer
+     * {@link MultipartBodyWriter#writePart(String, String, String, List)}, but computes the content transfer
      * encoding based on the content type and the {@link OMOutputFormat}.
      * 
      * @param contentType
@@ -160,7 +160,7 @@ public class OMMultipartWriter {
     
     /**
      * Write a MIME part. This method delegates to
-     * {@link MultipartBodyWriter#writePart(DataHandler, String, String)}, but computes the appropriate
+     * {@link MultipartBodyWriter#writePart(DataHandler, String, String, List)}, but computes the appropriate
      * content transfer encoding from the {@link OMOutputFormat}.
      * 
      * @param dataHandler