module WebFlow { |
module lms{ |
interface runEdys:BeanContextChild { void run(); }; |
package WebFlow.lms import WebFlow.*; import WebFlow.event.*; |
import org.omg.CORBA.*; |
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() { ... } } |