more fixes for OpenWire.Net; getting close to compiling :)

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@366542 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Strachan 2006-01-06 17:53:56 +00:00
parent ccd1113a79
commit d51d772352
2 changed files with 3 additions and 4 deletions

View File

@ -86,7 +86,7 @@ namespace OpenWire.Core.Commands
// TODO generate Equals method
// TODO generate HashCode method
// TODO generate GetHashCode method
// TODO generate ToString method
@ -96,7 +96,6 @@ namespace OpenWire.Core.Commands
// Properties
"""
for (property in properties) {
def type = toCSharpType(property.type)

View File

@ -84,7 +84,7 @@ namespace OpenWire.Core.IO
}
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 @@ namespace OpenWire.Core.IO
}
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) {