1 | |
2 | |
3 | #include "..\BC.idl" module WebFlow { |
4 | module lms{ |
5 | interface runEdys:BeanContextChild { void run(); } interface runCasc2d:BeanContextChild{ void run(); } interface DoneEvent{ Object getSource(); }; |
6 | }; }; |
7 | The compiler will create 3 Java interfaces: - runEdysOperations.java - runCasc2dOperations.java - DoneEventOperations.java You have to implement these interfaces. Without --tie option the compiler will generate classes to be extended. We already extend from BeanContextChild |