If you want the IDL for Java classes you could try using the rmic compiler that comes with the jdk. Just do
rmic -idl java.io.OutputStream
for example.
Otherwise, I don't think you need a JavaObject, etc. You can just do
module java { module lang { interface Object { }; }; };
Regards,
Chris
Pier Fumagalli wrote:
That is what I wanted... I didn't know that OpenORB (which is moving to Apache once Intalio gets around on its ass and signs the transfer letter) had a IdlDoc tool...
That _is_ going to make my life _so_easy_ you won't believe it...
BTW, can we split the big "Cocoon.idl" into separate files? What do you think? Also, the module name should be "cocoon_flow", so that we can use the "cocoon" module for other bindings in the future...
Pier