Compile usig jidl --tie
#include “..\BC.idl”module WebFlow {
interface runEdys:BeanContextChild { void run(); } interface runCasc2d:BeanContextChild{ void run(); } interface DoneEvent{ Object getSource(); };
The compiler will create 3 Java interfaces: - runEdysOperations.java - runCasc2dOperations.java - DoneEventOperations.javaYou have to implement theseinterfaces. Without --tie option the compilerwill generate classes to be extended. We already extend from BeanContextChild