You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by js...@apache.org on 2006/01/06 18:54:08 UTC

svn commit: r366542 - in /incubator/activemq/trunk/activemq-core/src/gram/script: GenerateCSharpClasses.groovy GenerateCSharpMarshalling.groovy

Author: jstrachan
Date: Fri Jan  6 09:53:56 2006
New Revision: 366542

URL: http://svn.apache.org/viewcvs?rev=366542&view=rev
Log:
more fixes for OpenWire.Net; getting close to compiling :)

Modified:
    incubator/activemq/trunk/activemq-core/src/gram/script/GenerateCSharpClasses.groovy
    incubator/activemq/trunk/activemq-core/src/gram/script/GenerateCSharpMarshalling.groovy

Modified: incubator/activemq/trunk/activemq-core/src/gram/script/GenerateCSharpClasses.groovy
URL: http://svn.apache.org/viewcvs/incubator/activemq/trunk/activemq-core/src/gram/script/GenerateCSharpClasses.groovy?rev=366542&r1=366541&r2=366542&view=diff
==============================================================================
--- incubator/activemq/trunk/activemq-core/src/gram/script/GenerateCSharpClasses.groovy (original)
+++ incubator/activemq/trunk/activemq-core/src/gram/script/GenerateCSharpClasses.groovy Fri Jan  6 09:53:56 2006
@@ -86,7 +86,7 @@
 
 
         // TODO generate Equals method
-        // TODO generate HashCode method
+        // TODO generate GetHashCode method
         // TODO generate ToString method
 
 
@@ -96,7 +96,6 @@
 
 
         // Properties
-
 """
                 for (property in properties) {
                     def type = toCSharpType(property.type)

Modified: incubator/activemq/trunk/activemq-core/src/gram/script/GenerateCSharpMarshalling.groovy
URL: http://svn.apache.org/viewcvs/incubator/activemq/trunk/activemq-core/src/gram/script/GenerateCSharpMarshalling.groovy?rev=366542&r1=366541&r2=366542&view=diff
==============================================================================
--- incubator/activemq/trunk/activemq-core/src/gram/script/GenerateCSharpMarshalling.groovy (original)
+++ incubator/activemq/trunk/activemq-core/src/gram/script/GenerateCSharpMarshalling.groovy Fri Jan  6 09:53:56 2006
@@ -84,7 +84,7 @@
         }
 
         public override void BuildCommand(Command command, BinaryReader dataIn) {
-            super.buildCommand(command, dataIn);
+            base.BuildCommand(command, dataIn);
             ${jclass.simpleName} info = (${jclass.simpleName}) command;
 """
                 for (property in propertyList) {
@@ -143,7 +143,7 @@
         }
 
         public override void WriteCommand(Command command, BinaryWriter dataOut) {
-            super.writeCommand(command, dataOut);
+            base.WriteCommand(command, dataOut);
             ${jclass.simpleName} info = (${jclass.simpleName}) command;
 """
                 for (property in propertyList) {