Methods Summary |
---|
public java.lang.String[] | _ids()
return (String[])__ids.clone ();
|
public void | destroy()This operation destroys the iterator.
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("destroy", true);
$in = _invoke ($out);
return;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
destroy ( );
} finally {
_releaseReply ($in);
}
|
public boolean | next_n(int how_many, org.omg.CosNaming.BindingListHolder bl)This operation returns at most the requested number of bindings.
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("next_n", true);
$out.write_ulong (how_many);
$in = _invoke ($out);
boolean $result = $in.read_boolean ();
bl.value = org.omg.CosNaming.BindingListHelper.read ($in);
return $result;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
return next_n (how_many, bl );
} finally {
_releaseReply ($in);
}
|
public boolean | next_one(org.omg.CosNaming.BindingHolder b)This operation returns the next binding. If there are no more
bindings, false is returned.
org.omg.CORBA.portable.InputStream $in = null;
try {
org.omg.CORBA.portable.OutputStream $out = _request ("next_one", true);
$in = _invoke ($out);
boolean $result = $in.read_boolean ();
b.value = org.omg.CosNaming.BindingHelper.read ($in);
return $result;
} catch (org.omg.CORBA.portable.ApplicationException $ex) {
$in = $ex.getInputStream ();
String _id = $ex.getId ();
throw new org.omg.CORBA.MARSHAL (_id);
} catch (org.omg.CORBA.portable.RemarshalException $rm) {
return next_one (b );
} finally {
_releaseReply ($in);
}
|
private void | readObject(java.io.ObjectInputStream s)
String str = s.readUTF ();
String[] args = null;
java.util.Properties props = null;
org.omg.CORBA.Object obj = org.omg.CORBA.ORB.init (args, props).string_to_object (str);
org.omg.CORBA.portable.Delegate delegate = ((org.omg.CORBA.portable.ObjectImpl) obj)._get_delegate ();
_set_delegate (delegate);
|
private void | writeObject(java.io.ObjectOutputStream s)
String[] args = null;
java.util.Properties props = null;
String str = org.omg.CORBA.ORB.init (args, props).object_to_string (this);
s.writeUTF (str);
|