1 26 27 package DiningPhilosophers.cif; 28 29 42 43 public class ForkHomeImpl 44 extends DiningPhilosophers.ForkManagerSessionComposition.ForkManagerHome_impl 45 { 46 52 58 59 public 60 ForkHomeImpl() 61 { 62 } 63 64 70 76 82 87 public org.omg.Components.ExecutorSegmentBase 88 create_executor_segment(int segid) 89 { 90 switch (segid) 91 { 92 case ForkSegImpl._segment_id_value: 93 return new ForkSegImpl(); 94 default: 95 return new ForkManagerImpl(); 96 } 97 } 98 99 100 106 110 public static org.omg.Components.HomeExecutorBase 111 create_home() 112 { 113 return new ForkHomeImpl(); 114 } 115 } 116 | Popular Tags |