diff options
author | Michi Henning <michi@zeroc.com> | 2009-06-04 16:19:02 +1000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2009-06-04 16:19:02 +1000 |
commit | 45a3f61401e8c6cccc841fa43a4b35f9f5a444a8 (patch) | |
tree | 2d328e013b11a6e3724256cb471f6827c94b6e7d /java/src/Ice/TieBase.java | |
parent | Fixed BCC compile errors (diff) | |
download | ice-45a3f61401e8c6cccc841fa43a4b35f9f5a444a8.tar.bz2 ice-45a3f61401e8c6cccc841fa43a4b35f9f5a444a8.tar.xz ice-45a3f61401e8c6cccc841fa43a4b35f9f5a444a8.zip |
Lots of javadoc comments.
Diffstat (limited to 'java/src/Ice/TieBase.java')
-rw-r--r-- | java/src/Ice/TieBase.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/java/src/Ice/TieBase.java b/java/src/Ice/TieBase.java index 1cebb81abbc..2375429948d 100644 --- a/java/src/Ice/TieBase.java +++ b/java/src/Ice/TieBase.java @@ -9,8 +9,22 @@ package Ice; +/** + * Interface for servants using the tie mapping. + **/ public interface TieBase { + /** + * Returns the delegate for this tie. + * + * @return The delegate. + **/ java.lang.Object ice_delegate(); + + /** + * Sets the delegate for this tie. + * + * @param delegate The delegate. + **/ void ice_delegate(java.lang.Object delegate); } |