diff options
author | Mark Spruiell <mes@zeroc.com> | 2002-02-05 19:26:24 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2002-02-05 19:26:24 +0000 |
commit | 1d24a86babc8a1088cca49d9e7d500738e98dc96 (patch) | |
tree | abd546607884656f3c5a72c00f6fe1b8ab9760b2 /java/src/Ice/_ObjectDelM.java | |
parent | removing XsdVisitor dependency (diff) | |
download | ice-1d24a86babc8a1088cca49d9e7d500738e98dc96.tar.bz2 ice-1d24a86babc8a1088cca49d9e7d500738e98dc96.tar.xz ice-1d24a86babc8a1088cca49d9e7d500738e98dc96.zip |
porting against C++ tag icej_baseline_02012002
Diffstat (limited to 'java/src/Ice/_ObjectDelM.java')
-rw-r--r-- | java/src/Ice/_ObjectDelM.java | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/java/src/Ice/_ObjectDelM.java b/java/src/Ice/_ObjectDelM.java index d2c2eab18e8..61e3a77a488 100644 --- a/java/src/Ice/_ObjectDelM.java +++ b/java/src/Ice/_ObjectDelM.java @@ -42,6 +42,54 @@ public class _ObjectDelM implements _ObjectDel } } + public String[] + ice_ids(java.util.Map __context) + throws LocationForward, IceInternal.NonRepeatable + { + IceInternal.Outgoing __out = + new IceInternal.Outgoing(__connection, __reference, "ice_ids", + true, __context); + IceInternal.BasicStream __is = __out.is(); + IceInternal.BasicStream __os = __out.os(); + if (!__out.invoke()) + { + throw new UnknownUserException(); + } + return __is.readStringSeq(); + } + + public String + ice_id(java.util.Map __context) + throws LocationForward, IceInternal.NonRepeatable + { + IceInternal.Outgoing __out = + new IceInternal.Outgoing(__connection, __reference, "ice_id", + true, __context); + IceInternal.BasicStream __is = __out.is(); + IceInternal.BasicStream __os = __out.os(); + if (!__out.invoke()) + { + throw new UnknownUserException(); + } + return __is.readString(); + } + + public String[] + ice_facets(java.util.Map __context) + throws LocationForward, IceInternal.NonRepeatable + { + IceInternal.Outgoing __out = + new IceInternal.Outgoing(__connection, __reference, "ice_facets", + true, __context); + IceInternal.BasicStream __is = __out.is(); + IceInternal.BasicStream __os = __out.os(); + if (!__out.invoke()) + { + throw new UnknownUserException(); + } + return __is.readStringSeq(); + } + public byte[] ice_invoke(String operation, boolean nonmutating, byte[] inParams, java.util.Map __context) |