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/DispatchStatus.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/DispatchStatus.java')
-rw-r--r-- | java/src/Ice/DispatchStatus.java | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/java/src/Ice/DispatchStatus.java b/java/src/Ice/DispatchStatus.java index 7953b8c11e3..73d3e869173 100644 --- a/java/src/Ice/DispatchStatus.java +++ b/java/src/Ice/DispatchStatus.java @@ -9,23 +9,43 @@ package Ice; +/** + * Indicates the status of operation dispatch. + * + * @see DispatchInterceptor + **/ public final class DispatchStatus { private static DispatchStatus[] __values = new DispatchStatus[3]; private int __value; public static final int _DispatchOK = 0; + + /** + * Indicates that an operation was dispatched synchronously and successfully. + **/ public static final DispatchStatus DispatchOK = new DispatchStatus(_DispatchOK); public static final int _DispatchUserException = 1; + + /** + * Indicates that an operation was dispatched synchronously and raised a user exception. + **/ public static final DispatchStatus DispatchUserException = new DispatchStatus(_DispatchUserException); public static final int _DispatchAsync = 2; + + /** + * Indicates that an operation was dispatched asynchronously. + **/ public static final DispatchStatus DispatchAsync = new DispatchStatus(_DispatchAsync); + /** + * Converts an ordinal value to the corresponding enumerator. + **/ public static DispatchStatus convert(int val) { @@ -33,6 +53,9 @@ public final class DispatchStatus return __values[val]; } + /** + * Returns the ordinal value of the current enumerator. + **/ public int value() { |