summaryrefslogtreecommitdiff
path: root/org/omg/CORBA_2_3
diff options
context:
space:
mode:
Diffstat (limited to 'org/omg/CORBA_2_3')
-rw-r--r--org/omg/CORBA_2_3/ORB.java11
-rw-r--r--org/omg/CORBA_2_3/portable/InputStream.java8
-rw-r--r--org/omg/CORBA_2_3/portable/OutputStream.java12
3 files changed, 16 insertions, 15 deletions
diff --git a/org/omg/CORBA_2_3/ORB.java b/org/omg/CORBA_2_3/ORB.java
index 82660fea7..0895b8037 100644
--- a/org/omg/CORBA_2_3/ORB.java
+++ b/org/omg/CORBA_2_3/ORB.java
@@ -1,5 +1,5 @@
/* ORB.java --
- Copyright (C) 2005 Free Software Foundation, Inc.
+ Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -38,12 +38,14 @@ exception statement from your version. */
package org.omg.CORBA_2_3;
+import javax.rmi.CORBA.Tie;
+
import org.omg.CORBA.BAD_PARAM;
import org.omg.CORBA.NO_IMPLEMENT;
import org.omg.CORBA.portable.ValueFactory;
/**
- * This class should provide the {@link org.omg.CORBA.ORB) ORB extensions,
+ * This class should provide the {@link org.omg.CORBA.ORB}) ORB extensions,
* defined in the OMG CORBA version 2.3 specification. However in the
* Sun's API specification is written that this functionality is not
* implemented at least at least till 1.4 inclusive.
@@ -93,10 +95,9 @@ public abstract class ORB
*
* @param repository_id a repository id
*
- * @return never
* @throws NO_IMPLEMENT, always.
*/
- public void unregister_value_factory(String id)
+ public void unregister_value_factory(String repository_id)
{
throw new NO_IMPLEMENT();
}
@@ -117,7 +118,7 @@ public abstract class ORB
}
/**
- * This method is called by RMI-IIOP {@link javax.rmi.Tie#orb(ORB)},
+ * This method is called by RMI-IIOP {@link Tie#orb(ORB)},
* passing <code>this</code> as parameter. The ORB will try to connect
* that tie as one of its objects.
*/
diff --git a/org/omg/CORBA_2_3/portable/InputStream.java b/org/omg/CORBA_2_3/portable/InputStream.java
index 23055ef2d..349590eed 100644
--- a/org/omg/CORBA_2_3/portable/InputStream.java
+++ b/org/omg/CORBA_2_3/portable/InputStream.java
@@ -1,5 +1,5 @@
/* InputStream.java --
- Copyright (C) 2005 Free Software Foundation, Inc.
+ Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -72,7 +72,7 @@ public abstract class InputStream
*
* As specified in OMG specification, this reads a single
* boolean and then delegates either to {@link #read_Object()} (for false)
- * or to {@link #read_Value()} (for true).
+ * or to {@link #read_value()} (for true).
*
* @return an abstract interface, unmarshaled from the stream.
*/
@@ -93,7 +93,7 @@ public abstract class InputStream
*
* As specified in OMG specification, this reads a single
* boolean and then delegates either to {@link #read_Object(Class)} (for false)
- * or to {@link #read_Value(Class)} (for true).
+ * or to {@link #read_value(Class)} (for true).
*
* @param clz a base class for the abstract interface.
*
@@ -125,8 +125,6 @@ public abstract class InputStream
* {@link #read_value(Class)} or {@link #read_value(Serializable)}
* instead.
*
- * @param repository_id a repository id of the value type.
- *
* @return an value type structure, unmarshaled from the stream
*/
public Serializable read_value()
diff --git a/org/omg/CORBA_2_3/portable/OutputStream.java b/org/omg/CORBA_2_3/portable/OutputStream.java
index 70f9a4913..f1369f782 100644
--- a/org/omg/CORBA_2_3/portable/OutputStream.java
+++ b/org/omg/CORBA_2_3/portable/OutputStream.java
@@ -1,5 +1,5 @@
/* OutputStream.java --
- Copyright (C) 2005 Free Software Foundation, Inc.
+ Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -41,6 +41,8 @@ package org.omg.CORBA_2_3.portable;
import gnu.CORBA.CDR.Vio;
import org.omg.CORBA.portable.BoxedValueHelper;
+import org.omg.CORBA.portable.CustomValue;
+import org.omg.CORBA.portable.StreamableValue;
import org.omg.CORBA.portable.ValueBase;
import java.io.Serializable;
@@ -92,7 +94,7 @@ public abstract class OutputStream
* Writes a value type into the output stream.
*
* The value type must implement either {@link CustomValue} (for user-defined
- * writing method) or {@link StramableValue} (for standard writing using code,
+ * writing method) or {@link StreamableValue} (for standard writing using code,
* generated by IDL compiler).
*
* The written record will have a repository id, matching the class of the
@@ -109,7 +111,7 @@ public abstract class OutputStream
* Write value to the stream using the boxed value helper.
*
* The value type must implement either {@link CustomValue}
- * (for user-defined writing method) or {@link StramableValue}
+ * (for user-defined writing method) or {@link StreamableValue}
* (for standard writing using code, generated by IDL compiler).
*
* @param value a value to write.
@@ -129,7 +131,7 @@ public abstract class OutputStream
* writing two Id inheritance hierarchy.
*
* The value type must implement either {@link CustomValue}
- * (for user-defined writing method) or {@link StramableValue}
+ * (for user-defined writing method) or {@link StreamableValue}
* (for standard writing using code, generated by IDL compiler).
*
* @param value a value type object to write.
@@ -144,7 +146,7 @@ public abstract class OutputStream
* repository id.
*
* The value type must implement either {@link CustomValue} (for user-defined
- * writing method) or {@link StramableValue} (for standard writing using code,
+ * writing method) or {@link StreamableValue} (for standard writing using code,
* generated by IDL compiler).
*
* @param repository_id a repository id of the value type.