diff options
author | Michi Henning <michi@zeroc.com> | 2009-07-08 07:30:19 +1000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2009-07-08 07:30:19 +1000 |
commit | e769f2c0cc39b4102436b4d57727a46f60ed8ef7 (patch) | |
tree | 1f698a40790dd74b3c4a77c85cd6244b03f60501 /java/src/Ice/InputStream.java | |
parent | Add test/Ice/servantLocator missed files. (diff) | |
download | ice-e769f2c0cc39b4102436b4d57727a46f60ed8ef7.tar.bz2 ice-e769f2c0cc39b4102436b4d57727a46f60ed8ef7.tar.xz ice-e769f2c0cc39b4102436b4d57727a46f60ed8ef7.zip |
Bug 3502: More cleanup for new javadoc syntax.
Diffstat (limited to 'java/src/Ice/InputStream.java')
-rw-r--r-- | java/src/Ice/InputStream.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/Ice/InputStream.java b/java/src/Ice/InputStream.java index b3d6d13637f..2a4f897d15f 100644 --- a/java/src/Ice/InputStream.java +++ b/java/src/Ice/InputStream.java @@ -30,7 +30,7 @@ public interface InputStream * * @param If <code>true</code> (the default), slicing is enabled; if <code>false</code>, * slicing is disabled. If slicing is disabled and the stream encounters a Slice type ID - * during decoding for which no object factory is installed, it raises <code>NoObjectFactoryException</code>. + * during decoding for which no object factory is installed, it raises {@link NoObjectFactoryException}. **/ void sliceObjects(boolean slice); @@ -171,7 +171,7 @@ public interface InputStream * Extracts the index of a Slice class from the stream. * * @param cb The callback to notify the application when the extracted instance is available. - * The Ice run time extracts Slice classes stages. The Ice run time calls <code>ReadObjectCallback.invoke</code> + * The Ice run time extracts Slice classes stages. The Ice run time calls {@link ReadObjectCallback#invoke} * when the corresponding instance has been fully unmarshaled. * * @see ReadObjectCallback @@ -258,7 +258,7 @@ public interface InputStream /** * Indicates that unmarshaling is complete, except for any Slice objects. The application must call this method * only if the stream actually contains Slice objects. Calling <code>readPendingObjects</code> triggers the - * calls to <code>ReadObjectCallback.invoke</code> that inform the application that unmarshaling of a Slice + * calls to {@link ReadObjectCallback#invoke} that inform the application that unmarshaling of a Slice * object is complete. **/ void readPendingObjects(); |