summaryrefslogtreecommitdiff
path: root/java/src/Ice/InputStream.java
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2009-07-20 13:16:17 +1000
committerMichi Henning <michi@zeroc.com>2009-07-20 13:16:17 +1000
commit09eabfe43746b4db696223a426197e6196e1efce (patch)
tree6a80bc8338b1f5b38816acb18912fff26aed291f /java/src/Ice/InputStream.java
parentbug 2806 - Java holder changes for class/interface types (diff)
downloadice-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/InputStream.java')
-rw-r--r--java/src/Ice/InputStream.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/java/src/Ice/InputStream.java b/java/src/Ice/InputStream.java
index 2a4f897d15f..d715da08334 100644
--- a/java/src/Ice/InputStream.java
+++ b/java/src/Ice/InputStream.java
@@ -28,7 +28,7 @@ public interface InputStream
* Determines the behavior of the stream when extract Slice objects.
* A Slice object is "sliced" when a factory cannot be found for a Slice type ID.
*
- * @param If <code>true</code> (the default), slicing is enabled; if <code>false</code>,
+ * @param slice 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 {@link NoObjectFactoryException}.
**/
@@ -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 {@link ReadObjectCallback#invoke}
+ * The Ice run time extracts Slice classes in stages. The Ice run time calls {@link ReadObjectCallback#invoke}
* when the corresponding instance has been fully unmarshaled.
*
* @see ReadObjectCallback
@@ -246,7 +246,7 @@ public interface InputStream
void checkFixedSeq(int numElements, int minSize);
/**
- * Indicates that the a sequence has been unmarshaled.
+ * Indicates that a sequence has been unmarshaled.
**/
void endSeq(int sz);
@@ -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 {@link ReadObjectCallback#invoke} that inform the application that unmarshaling of a Slice
+ * calls to {@link ReadObjectCallback#invoke} that informs the application that unmarshaling of a Slice
* object is complete.
**/
void readPendingObjects();