/[classpath]/classpath/org/omg/CORBA/ORB.java
ViewVC logotype

Diff of /classpath/org/omg/CORBA/ORB.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3 by audriusa, Sun May 15 01:09:29 2005 UTC revision 1.4 by audriusa, Mon May 23 12:56:18 2005 UTC
# Line 182  public abstract class ORB Line 182  public abstract class ORB
182    public abstract ContextList create_context_list();    public abstract ContextList create_context_list();
183    
184    /**    /**
185       * The support for {@link DynAny} and derived interfaces
186       * has never been implemented in Sun's java releases,
187       * at least till v1.4 inclusive.
188       *
189       * Since v1.4 this stil missing implementation was replaced
190       * by the new DynamicAny package.
191       *
192       * @throws NO_IMPLEMENT, always.
193       */
194      public DynAny create_basic_dyn_any(org.omg.CORBA.TypeCode t)
195      {
196        throw new NO_IMPLEMENT();
197      };
198    
199      /**
200       * The support for {@link DynAny} and derived interfaces
201       * has never been implemented in Sun's java releases,
202       * at least till v1.4 inclusive.
203       *
204       * Since v1.4 this stil missing implementation was replaced
205       * by the new DynamicAny package.
206       *
207       * @throws NO_IMPLEMENT, always.
208       */
209      public DynAny create_dyn_any(org.omg.CORBA.Any a)
210      {
211        throw new NO_IMPLEMENT();
212      };
213    
214      /**
215       * The support for {@link DynArray}
216       * has never been implemented in Sun's java releases,
217       * at least till v1.4 inclusive.
218       *
219       * Since v1.4 this stil missing implementation was replaced
220       * by the new DynamicAny package.
221       *
222       * @throws NO_IMPLEMENT, always.
223       */
224      public DynArray create_dyn_array(org.omg.CORBA.TypeCode t)
225       {
226         throw new NO_IMPLEMENT();
227       };
228    
229      /**
230       * The support for {@link DynEnum}
231       * has never been implemented in Sun's java releases,
232       * at least till v1.4 inclusive.
233       *
234       * Since v1.4 this stil missing implementation was replaced
235       * by the new DynamicAny package.
236       *
237       * @throws NO_IMPLEMENT, always.
238       */
239      public DynEnum create_dyn_enum(org.omg.CORBA.TypeCode t)
240      {
241        throw new NO_IMPLEMENT();
242      };
243    
244      /**
245       * The support for {@link DynSequence}
246       * has never been implemented in Sun's java releases,
247       * at least till v1.4 inclusive.
248       *
249       * Since v1.4 this stil missing implementation was replaced
250       * by the new DynamicAny package.
251       *
252       * @throws NO_IMPLEMENT, always.
253       */
254      public DynSequence create_dyn_sequence(org.omg.CORBA.TypeCode t)
255      {
256        throw new NO_IMPLEMENT();
257      };
258    
259      /**
260       * The support for {@link DynStruct} and derived interfaces
261       * has never been implemented in Sun's java releases,
262       * at least till v1.4 inclusive.
263       *
264       * Since v1.4 this stil missing implementation was replaced
265       * by the new DynamicAny package.
266       *
267       * @throws NO_IMPLEMENT, always.
268       */
269      public DynStruct create_dyn_struct(org.omg.CORBA.TypeCode t)
270      {
271        throw new NO_IMPLEMENT();
272      };
273    
274      /**
275       * The support for {@link DynUnion} and derived interfaces
276       * has never been implemented in Sun's java releases,
277       * at least till v1.4 inclusive.
278       *
279       * Since v1.4 this stil missing implementation was replaced
280       * by the new DynamicAny package.
281       *
282       * @throws NO_IMPLEMENT, always.
283       */
284      public DynUnion create_dyn_union(org.omg.CORBA.TypeCode t)
285      {
286        throw new NO_IMPLEMENT();
287      };
288    
289      /**
290     * Create a typecode, defining the given enumeration.     * Create a typecode, defining the given enumeration.
291     *     *
292     * @param id the id.     * @param id the id.
# Line 275  public abstract class ORB Line 380  public abstract class ORB
380    public abstract org.omg.CORBA.portable.OutputStream create_output_stream();    public abstract org.omg.CORBA.portable.OutputStream create_output_stream();
381    
382    /**    /**
383       * This should create the new policy with the specified type and initial
384       * state. The policies and methods for getting them are not implemented till
385       * v1.4 inclusive.
386       *
387       * @param type the policy type.
388       * @param value the policy value.
389       *
390       * @return never
391       *
392       * @throws NO_IMPLEMENT, always.
393       */
394      public Policy create_policy(int type, Any value)
395      {
396        throw new NO_IMPLEMENT();
397      }
398    
399      /**
400     * Create typecode, defining the sequence of the elements, having     * Create typecode, defining the sequence of the elements, having
401     * the given type.     * the given type.
402     *     *
# Line 384  public abstract class ORB Line 506  public abstract class ORB
506    }    }
507    
508    /**    /**
509       * This should return the information, related to the current thread.
510       * The {@link Current} is very general interface, with no fields and
511       * operations defined. This method is not implemented in Suns
512       * releases at least till v1.4 inclusive.
513       *
514       * @deprecated since 1.2
515       *
516       * @return never
517       *
518       * @throws NO_IMPLEMENT, always.
519       */
520      public Current get_current()
521      {
522        throw new NO_IMPLEMENT();
523      }
524    
525      /**
526     * Get the default context of this ORB. This is an initial root of all     * Get the default context of this ORB. This is an initial root of all
527     * contexts.     * contexts.
528     *     *

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26