summaryrefslogtreecommitdiff
path: root/org/omg/CosNaming/IstringHelper.java
diff options
context:
space:
mode:
Diffstat (limited to 'org/omg/CosNaming/IstringHelper.java')
-rw-r--r--org/omg/CosNaming/IstringHelper.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/org/omg/CosNaming/IstringHelper.java b/org/omg/CosNaming/IstringHelper.java
index b90b452e6..df680f436 100644
--- a/org/omg/CosNaming/IstringHelper.java
+++ b/org/omg/CosNaming/IstringHelper.java
@@ -1,5 +1,5 @@
/* IstringHelper.java --
- Copyright (C) 2005 Free Software Foundation, Inc.
+ Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -59,7 +59,7 @@ import org.omg.CORBA.portable.OutputStream;
public abstract class IstringHelper
{
/**
- * Insert the IString into Any (uses {@link Any.insert_string}).
+ * Insert the IString into Any (uses {@link Any#insert_string}).
*
* @param a the Any to insert into.
* @param that the string to insert.
@@ -70,7 +70,7 @@ public abstract class IstringHelper
}
/**
- * Extract the IString from Any ((uses {@link Any.extract_string}).
+ * Extract the IString from Any ((uses {@link Any#extract_string}).
*
* @param a the Any to extract from.
*/
@@ -100,7 +100,7 @@ public abstract class IstringHelper
/**
* Calls {@link InputStream#read_string()}.
*
- * @param instream the stream to read from.
+ * @param istream the stream to read from.
*/
public static String read(InputStream istream)
{
@@ -108,7 +108,7 @@ public abstract class IstringHelper
}
/**
- * Calls {@link OutputStream#write_string()}.
+ * Calls {@link OutputStream#write_string(String)}.
*
* @param ostream the stream to write into.
* @param value the string (IString) value to write.