Return-Path: Delivered-To: apmail-geronimo-activemq-commits-archive@www.apache.org Received: (qmail 73815 invoked from network); 6 Jan 2006 17:55:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 6 Jan 2006 17:55:13 -0000 Received: (qmail 99936 invoked by uid 500); 6 Jan 2006 17:54:51 -0000 Delivered-To: apmail-geronimo-activemq-commits-archive@geronimo.apache.org Received: (qmail 99911 invoked by uid 500); 6 Jan 2006 17:54:51 -0000 Mailing-List: contact activemq-commits-help@geronimo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: activemq-dev@geronimo.apache.org Delivered-To: mailing list activemq-commits@geronimo.apache.org Received: (qmail 99896 invoked by uid 99); 6 Jan 2006 17:54:51 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 06 Jan 2006 09:54:51 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 06 Jan 2006 09:54:50 -0800 Received: (qmail 73077 invoked by uid 65534); 6 Jan 2006 17:54:22 -0000 Message-ID: <20060106175422.72934.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r366542 - in /incubator/activemq/trunk/activemq-core/src/gram/script: GenerateCSharpClasses.groovy GenerateCSharpMarshalling.groovy Date: Fri, 06 Jan 2006 17:54:08 -0000 To: activemq-commits@geronimo.apache.org From: jstrachan@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N 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) {