1 26 27 package DiningPhilosophers.monolithic; 28 29 import DiningPhilosophers.*; 30 31 44 45 public class PhilosopherHomePdaImpl 46 extends org.omg.CORBA.LocalObject 47 implements CCM_PhilosopherHome 48 { 49 55 61 62 public 63 PhilosopherHomePdaImpl() 64 { 65 } 66 67 73 79 85 90 public org.omg.Components.EnterpriseComponent 91 create() 92 { 93 return new PhilosopherPdaImpl(); 94 } 95 96 103 public org.omg.Components.EnterpriseComponent 104 _new(String name) 105 { 106 return new PhilosopherPdaImpl(name); 107 } 108 109 115 119 public static org.omg.Components.HomeExecutorBase 120 create_home() 121 { 122 return new PhilosopherHomePdaImpl(); 123 } 124 125 static 128 { 129 StatusInfoFactoryHelper.register(new StatusInfoFactory()); 131 } 132 } 133 | Popular Tags |