001 package org.omg.CosNaming;
002
003 /**
004 * org/omg/CosNaming/BindingIteratorHolder.java .
005 * Generated by the IDL-to-Java compiler (portable), version "3.2"
006 * from /home/iurt/rpm/BUILD/geronimo-spec-corba/src/main/idl/CosNaming.idl
007 * Saturday, November 26, 2011 9:53:36 PM UTC
008 */
009
010
011 /**
012 * The BindingIterator interface allows a client to iterate through
013 * the bindings using the next_one or next_n operations.
014 *
015 * The bindings iterator is obtained by using the <tt>list</tt>
016 * method on the <tt>NamingContext</tt>.
017 * @see org.omg.CosNaming.NamingContext#list
018 */
019 public final class BindingIteratorHolder implements org.omg.CORBA.portable.Streamable
020 {
021 public org.omg.CosNaming.BindingIterator value = null;
022
023 public BindingIteratorHolder ()
024 {
025 }
026
027 public BindingIteratorHolder (org.omg.CosNaming.BindingIterator initialValue)
028 {
029 value = initialValue;
030 }
031
032 public void _read (org.omg.CORBA.portable.InputStream i)
033 {
034 value = org.omg.CosNaming.BindingIteratorHelper.read (i);
035 }
036
037 public void _write (org.omg.CORBA.portable.OutputStream o)
038 {
039 org.omg.CosNaming.BindingIteratorHelper.write (o, value);
040 }
041
042 public org.omg.CORBA.TypeCode _type ()
043 {
044 return org.omg.CosNaming.BindingIteratorHelper.type ();
045 }
046
047 }