You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2009/05/21 00:34:03 UTC

svn commit: r776885 - /activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/marshallers/AmqCppMarshallingHeadersGenerator.java

Author: tabish
Date: Wed May 20 22:34:03 2009
New Revision: 776885

URL: http://svn.apache.org/viewvc?rev=776885&view=rev
Log:
Fix the generation of incorrect JavaDoc comments on the marshaling methods.

Modified:
    activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/marshallers/AmqCppMarshallingHeadersGenerator.java

Modified: activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/marshallers/AmqCppMarshallingHeadersGenerator.java
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/marshallers/AmqCppMarshallingHeadersGenerator.java?rev=776885&r1=776884&r2=776885&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/marshallers/AmqCppMarshallingHeadersGenerator.java (original)
+++ activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/marshallers/AmqCppMarshallingHeadersGenerator.java Wed May 20 22:34:03 2009
@@ -221,12 +221,12 @@
 out.println("");
     }
 out.println("        /**");
-out.println("         * Un-marshal an object instance from the data input stream");
+out.println("         * Un-marshal an object instance from the data input stream.");
 out.println("         *");
-out.println("         * @param wireFormat - describes the wire format of the broker");
-out.println("         * @param dataStructure - Object to be un-marshaled");
-out.println("         * @param dataIn - BinaryReader that provides that data");
-out.println("         * @param bs - BooleanStream");
+out.println("         * @param wireFormat - describes the wire format of the broker.");
+out.println("         * @param dataStructure - Object to be un-marshaled.");
+out.println("         * @param dataIn - BinaryReader that provides that data.");
+out.println("         * @param bs - BooleanStream stream used to unpack bits from the wire.");
 out.println("         *");
 out.println("         * @throws IOException if an error occurs during the unmarshal.");
 out.println("         */");
@@ -240,7 +240,7 @@
 out.println("         *");
 out.println("         * @param wireFormat - describes the wire format of the broker");
 out.println("         * @param dataStructure - Object to be marshaled");
-out.println("         * @param bs - BooleanStream");
+out.println("         * @param bs - BooleanStream stream used to pack bits from the wire.");
 out.println("         * @returns int value indicating the size of the marshaled object.");
 out.println("         *");
 out.println("         * @throws IOException if an error occurs during the marshal.");
@@ -255,7 +255,7 @@
 out.println("         * @param wireFormat - describes the wire format of the broker");
 out.println("         * @param dataStructure - Object to be marshaled");
 out.println("         * @param dataOut - BinaryReader that provides that data sink");
-out.println("         * @param bs - BooleanStream");
+out.println("         * @param bs - BooleanStream stream used to pack bits from the wire.");
 out.println("         *");
 out.println("         * @throws IOException if an error occurs during the marshal.");
 out.println("         */");