| 1 26 27 package org.objectweb.openccm.corba.trader; 28 29 import org.omg.CosTradingRepos.ServiceTypeRepositoryPackage.SpecifiedServiceTypes; 30 import org.omg.CosTradingRepos.ServiceTypeRepositoryPackage.IncarnationNumber; 31 32 41 public class SpecifiedServiceTypesWrapper { 42 43 49 55 58 public SpecifiedServiceTypesWrapper() {} 59 60 66 72 78 88 public static SpecifiedServiceTypes 89 create_all() { 90 SpecifiedServiceTypes sst = new SpecifiedServiceTypes(); 91 sst.__default(); 92 return sst; 93 94 } 95 96 106 public static SpecifiedServiceTypes 107 create_since(IncarnationNumber num) { 108 SpecifiedServiceTypes sst = new SpecifiedServiceTypes(); 109 sst.incarnation(num); 110 return sst; 111 112 } 113 } 114 | Popular Tags |