1 26 27 package org.objectweb.ccm.IDL3; 28 29 37 38 public interface PrimitiveTypeFactory 39 { 40 45 public TypeRef 46 type_null(); 47 48 53 public TypeRef 54 type_void(); 55 56 61 public TypeRef 62 type_short(); 63 64 69 public TypeRef 70 type_long(); 71 72 77 public TypeRef 78 type_unsigned_short(); 79 80 85 public TypeRef 86 type_unsigned_long(); 87 88 93 public TypeRef 94 type_float(); 95 96 101 public TypeRef 102 type_double(); 103 104 109 public TypeRef 110 type_boolean(); 111 112 117 public TypeRef 118 type_char(); 119 120 125 public TypeRef 126 type_octet(); 127 128 133 public TypeRef 134 type_any(); 135 136 141 public TypeRef 142 type_TypeCode(); 143 144 149 public TypeRef 150 type_Principal(); 151 152 157 public TypeRef 158 type_string(); 159 160 165 public TypeRef 166 type_Object(); 167 168 173 public TypeRef 174 type_long_long(); 175 176 181 public TypeRef 182 type_unsigned_long_long(); 183 184 189 public TypeRef 190 type_long_double(); 191 192 197 public TypeRef 198 type_wchar(); 199 200 205 public TypeRef 206 type_wstring(); 207 208 213 public TypeRef 214 type_value_base(); 215 216 221 public TypeRef 222 createString(int bound); 223 224 229 public TypeRef 230 createWstring(int bound); 231 232 237 public TypeRef 238 createSequence(int bound, 239 TypeRef element_type); 240 241 246 public TypeRef 247 createArray(int length, 248 TypeRef element_type); 249 250 255 public TypeRef 256 createFixed(short digits, 257 short scale); 258 } 259 | Popular Tags |