updated OpenWire.Net generation script

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@366539 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Strachan 2006-01-06 17:31:28 +00:00
parent 6f845eeb85
commit ccd1113a79
1 changed files with 8 additions and 0 deletions

View File

@ -142,8 +142,16 @@ namespace OpenWire.Core.Commands
switch (type) {
case "java.lang.String":
return "string"
case "java.lang.Throwable":
return "string"
case "java.lang.Throwable":
return "string"
case "boolean":
return "bool"
case "org.activeio.ByteSequence":
return "byte[]"
case "org.apache.activemq.command.DataStructure[]":
return "Command[]"
case "org.apache.activemq.command.DataStructure":
return "Command"
case "org.apache.activemq.message.ActiveMQDestination":