1 26 27 package DiningPhilosophers.cif; 28 29 42 43 public class PhilosopherHomeImpl 44 extends DiningPhilosophers.PhilosopherSessionComposition.PhilosopherSessionHome_impl 45 { 46 52 58 59 public 60 PhilosopherHomeImpl() 61 { 62 } 63 64 70 76 82 87 public org.omg.Components.ExecutorSegmentBase 88 create_executor_segment(int segid) 89 { 90 return new PhilosopherImpl(); 91 } 92 93 99 106 public org.omg.Components.EnterpriseComponent 107 _new(String name) 108 { 109 return new PhilosopherImpl(name); 110 } 111 112 118 122 public static org.omg.Components.HomeExecutorBase 123 create_home() 124 { 125 return new PhilosopherHomeImpl(); 126 } 127 128 static 131 { 132 DiningPhilosophers.StatusInfoFactoryHelper.register(new StatusInfoFactory()); 134 } 135 } 136 | Popular Tags |