You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by di...@apache.org on 2005/06/27 22:35:15 UTC

svn commit: r202053 - in /webservices/axis/trunk/java/modules/xml: src/org/apache/axis/om/impl/llom/ test/org/apache/axis/soap/impl/llom/soap11/

Author: dims
Date: Mon Jun 27 13:35:14 2005
New Revision: 202053

URL: http://svn.apache.org/viewcvs?rev=202053&view=rev
Log:
Serialize 


Added:
    webservices/axis/trunk/java/modules/xml/test/org/apache/axis/soap/impl/llom/soap11/SOAP11SerializerTest.java
      - copied, changed from r202042, webservices/axis/trunk/java/modules/xml/test/org/apache/axis/soap/impl/llom/soap11/SOAP11SerialiserTest.java
Removed:
    webservices/axis/trunk/java/modules/xml/test/org/apache/axis/soap/impl/llom/soap11/SOAP11SerialiserTest.java
Modified:
    webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/impl/llom/OMElementImpl.java

Modified: webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/impl/llom/OMElementImpl.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/impl/llom/OMElementImpl.java?rev=202053&r1=202052&r2=202053&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/impl/llom/OMElementImpl.java (original)
+++ webservices/axis/trunk/java/modules/xml/src/org/apache/axis/om/impl/llom/OMElementImpl.java Mon Jun 27 13:35:14 2005
@@ -685,11 +685,11 @@
 
     /**
      * This was requested during the second Axis2 summit. When one call this method, this will
-     * serialise without building the object structure in the memory. Misuse of this method will
+     * serialize without building the object structure in the memory. Misuse of this method will
      * cause loss of data.So its adviced to use populateYourSelf() method, before this,
      * if you want to preserve data in the stream.
      *
-     * @param writer
+     * @param omOutput
      * @throws XMLStreamException
      */
     public void serialize(OMOutput omOutput) throws XMLStreamException {

Copied: webservices/axis/trunk/java/modules/xml/test/org/apache/axis/soap/impl/llom/soap11/SOAP11SerializerTest.java (from r202042, webservices/axis/trunk/java/modules/xml/test/org/apache/axis/soap/impl/llom/soap11/SOAP11SerialiserTest.java)
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/xml/test/org/apache/axis/soap/impl/llom/soap11/SOAP11SerializerTest.java?p2=webservices/axis/trunk/java/modules/xml/test/org/apache/axis/soap/impl/llom/soap11/SOAP11SerializerTest.java&p1=webservices/axis/trunk/java/modules/xml/test/org/apache/axis/soap/impl/llom/soap11/SOAP11SerialiserTest.java&r1=202042&r2=202053&rev=202053&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/xml/test/org/apache/axis/soap/impl/llom/soap11/SOAP11SerialiserTest.java (original)
+++ webservices/axis/trunk/java/modules/xml/test/org/apache/axis/soap/impl/llom/soap11/SOAP11SerializerTest.java Mon Jun 27 13:35:14 2005
@@ -27,10 +27,10 @@
  * author : Eran Chinthaka (chinthaka@apache.org)
  */
 
-public class SOAP11SerialiserTest extends OMTestCase{
+public class SOAP11SerializerTest extends OMTestCase{
     private OMOutput omOutput;
 
-    public SOAP11SerialiserTest(String testName) {
+    public SOAP11SerializerTest(String testName) {
         super(testName);
     }
 
@@ -45,7 +45,7 @@
                 createXMLStreamWriter(System.out));
     }
 
-    public void testSerialise(){
+    public void testSerialize(){
         try {
             soapEnvelope.serializeWithCache(omOutput);
             omOutput.flush();