1. /*
  2. * @(#)BindingIteratorHolder.java 1.6 01/11/29
  3. *
  4. * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. /*
  8. * File: ./org/omg/CosNaming/BindingIteratorHolder.java
  9. * From: nameservice.idl
  10. * Date: Tue Aug 11 03:12:09 1998
  11. * By: idltojava Java IDL 1.2 Aug 11 1998 02:00:18
  12. */
  13. package org.omg.CosNaming;
  14. public final class BindingIteratorHolder
  15. implements org.omg.CORBA.portable.Streamable{
  16. // instance variable
  17. public org.omg.CosNaming.BindingIterator value;
  18. // constructors
  19. public BindingIteratorHolder() {
  20. this(null);
  21. }
  22. public BindingIteratorHolder(org.omg.CosNaming.BindingIterator __arg) {
  23. value = __arg;
  24. }
  25. public void _write(org.omg.CORBA.portable.OutputStream out) {
  26. org.omg.CosNaming.BindingIteratorHelper.write(out, value);
  27. }
  28. public void _read(org.omg.CORBA.portable.InputStream in) {
  29. value = org.omg.CosNaming.BindingIteratorHelper.read(in);
  30. }
  31. public org.omg.CORBA.TypeCode _type() {
  32. return org.omg.CosNaming.BindingIteratorHelper.type();
  33. }
  34. }