1 | |
2 | |
3 | module WebFlow { |
4 | module lms{ |
5 | interface runEdys:BeanContextChild { void run(); }; |
6 | package WebFlow.lms import WebFlow.*; import WebFlow.event.*; |
7 | import org.omg.CORBA.*; |
8 | public class runEdysImpl extends WebFlow.BeanContextChildSupport implements runEdysOperations { String msg; public runEdysImpl(org.omg.CORBA.Object peer, String msg) { super(peer); this.msg=msg; } public void run() { ... } } |