1 26 27 package org.objectweb.openccm.corba.trader; 28 29 import org.omg.CosTrading.LookupPackage.SpecifiedProps; 30 31 40 public class SpecifiedPropsWrapper { 41 42 48 54 57 public SpecifiedPropsWrapper() {} 58 59 65 71 77 84 public static org.omg.CosTrading.LookupPackage.SpecifiedProps 85 create_none() { 86 SpecifiedProps sp = new SpecifiedProps(); 87 sp.__default(); 88 return sp; 89 } 90 91 98 public static org.omg.CosTrading.LookupPackage.SpecifiedProps 99 create_all() { 100 SpecifiedProps sp = new SpecifiedProps(); 101 sp.__default(org.omg.CosTrading.LookupPackage.HowManyProps.all); 102 return sp; 103 104 } 105 106 116 public static org.omg.CosTrading.LookupPackage.SpecifiedProps 117 create_some(String [] property_names) { 118 SpecifiedProps sp = new SpecifiedProps(); 119 sp.prop_names(property_names); 120 return sp; 121 } 122 } 123 | Popular Tags |