mirror of https://github.com/apache/activemq.git
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:
parent
ccd1113a79
commit
d51d772352
|
@ -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)
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue