You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-dev@ws.apache.org by ve...@apache.org on 2010/05/23 16:00:08 UTC

svn commit: r947416 - /webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMXMLStreamReader.java

Author: veithen
Date: Sun May 23 14:00:08 2010
New Revision: 947416

URL: http://svn.apache.org/viewvc?rev=947416&view=rev
Log:
Fixed Javadoc.

Modified:
    webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMXMLStreamReader.java

Modified: webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMXMLStreamReader.java
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMXMLStreamReader.java?rev=947416&r1=947415&r2=947416&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMXMLStreamReader.java (original)
+++ webservices/commons/trunk/modules/axiom/modules/axiom-api/src/main/java/org/apache/axiom/om/OMXMLStreamReader.java Sun May 23 14:00:08 2010
@@ -34,10 +34,8 @@ public interface OMXMLStreamReader exten
      * will be rendered as a inlined text event.
      * @return true if inlined as TEXT, false if XOP_INCLUDE is used
      * 
-     * @deprecated To return optimized base64 content as <tt>xop:Include</tt> elements, wrap the
-     *             reader using {@link org.apache.axiom.util.stax.xop.XOPEncodingStreamReader}.
-     *             This method introduces unnecessary complexity in the {@link XMLStreamReader}
-     *             implementation used by Axiom and will be removed in a future release.
+     * @deprecated This method will be removed in a future release of Axiom. See
+     *             {@link #setInlineMTOM(boolean)} for more details.
      */
     public boolean isInlineMTOM();
     
@@ -45,8 +43,10 @@ public interface OMXMLStreamReader exten
      * @param value set to true if inlining of text is desired (default)
      * throw OMException if not the value is not supported.
      * 
-     * @deprecated This method will be removed in a future release of Axiom. See
-     *             {@link #setInlineMTOM(boolean)} for more details.
+     * @deprecated To return optimized base64 content as <tt>xop:Include</tt> elements, wrap the
+     *             reader using {@link org.apache.axiom.util.stax.xop.XOPEncodingStreamReader}.
+     *             This method introduces unnecessary complexity in the {@link XMLStreamReader}
+     *             implementation used by Axiom and will be removed in a future release.
      */
     public void setInlineMTOM(boolean value);