1. package org.omg.CosNaming;
  2. /**
  3. * org/omg/CosNaming/BindingListHolder.java .
  4. * Generated by the IDL-to-Java compiler (portable), version "3.1"
  5. * from ../../../../src/share/classes/org/omg/CosNaming/nameservice.idl
  6. * Monday, February 23, 2004 7:03:07 AM GMT
  7. */
  8. /**
  9. * List of Bindings.
  10. */
  11. public final class BindingListHolder implements org.omg.CORBA.portable.Streamable
  12. {
  13. public org.omg.CosNaming.Binding value[] = null;
  14. public BindingListHolder ()
  15. {
  16. }
  17. public BindingListHolder (org.omg.CosNaming.Binding[] initialValue)
  18. {
  19. value = initialValue;
  20. }
  21. public void _read (org.omg.CORBA.portable.InputStream i)
  22. {
  23. value = org.omg.CosNaming.BindingListHelper.read (i);
  24. }
  25. public void _write (org.omg.CORBA.portable.OutputStream o)
  26. {
  27. org.omg.CosNaming.BindingListHelper.write (o, value);
  28. }
  29. public org.omg.CORBA.TypeCode _type ()
  30. {
  31. return org.omg.CosNaming.BindingListHelper.type ();
  32. }
  33. }