diff options
author | Michi Henning <michi@zeroc.com> | 2009-07-20 13:16:17 +1000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2009-07-20 13:16:17 +1000 |
commit | 09eabfe43746b4db696223a426197e6196e1efce (patch) | |
tree | 6a80bc8338b1f5b38816acb18912fff26aed291f /java/src/Ice/OutputStream.java | |
parent | bug 2806 - Java holder changes for class/interface types (diff) | |
download | ice-09eabfe43746b4db696223a426197e6196e1efce.tar.bz2 ice-09eabfe43746b4db696223a426197e6196e1efce.tar.xz ice-09eabfe43746b4db696223a426197e6196e1efce.zip |
Bug 3502 - Improve javadoc support in Eclipse
Fixed many doc comments in Java and Slice and
added doc comments for C#.
Diffstat (limited to 'java/src/Ice/OutputStream.java')
-rw-r--r-- | java/src/Ice/OutputStream.java | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/java/src/Ice/OutputStream.java b/java/src/Ice/OutputStream.java index 654cbcb0b64..0fce2ae23b6 100644 --- a/java/src/Ice/OutputStream.java +++ b/java/src/Ice/OutputStream.java @@ -18,7 +18,7 @@ package Ice; public interface OutputStream { /** - * Returns the communicator for this input stream. + * Returns the communicator for this output stream. * * @return The communicator. **/ @@ -54,6 +54,11 @@ public interface OutputStream **/ void writeByteSeq(byte[] v); + /** + * Writes a serializable Java object to the stream. + * + * @param o The serializable object to write. + **/ void writeSerializable(java.io.Serializable o); /** @@ -212,7 +217,7 @@ public interface OutputStream /** * Indicates that marshaling of a request or reply is finished. * - * @return The byte sequence containing the encode request or reply. + * @return The byte sequence containing the encoded request or reply. **/ byte[] finished(); |