aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/org/omg/CORBA_2_3/portable/OutputStream.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/classpath/org/omg/CORBA_2_3/portable/OutputStream.java')
-rw-r--r--libjava/classpath/org/omg/CORBA_2_3/portable/OutputStream.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/libjava/classpath/org/omg/CORBA_2_3/portable/OutputStream.java b/libjava/classpath/org/omg/CORBA_2_3/portable/OutputStream.java
index 818c718d25e..e9496ffce4d 100644
--- a/libjava/classpath/org/omg/CORBA_2_3/portable/OutputStream.java
+++ b/libjava/classpath/org/omg/CORBA_2_3/portable/OutputStream.java
@@ -69,11 +69,11 @@ public abstract class OutputStream
* Writes an abstract interface to the stream. An abstract interface can be
* eithe CORBA object or value type and is written as a union with the boolean
* discriminator (false for objects, true for value types).
- *
+ *
* The object from value is separated by fact that all values implement the
* {@link ValueBase} interface. Also, the passed parameter is treated as value
* it it does not implement CORBA Object.
- *
+ *
* @param an_interface an abstract interface to write.
*/
public void write_abstract_interface(java.lang.Object an_interface)
@@ -92,14 +92,14 @@ 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 StreamableValue} (for standard writing using code,
* generated by IDL compiler).
- *
+ *
* The written record will have a repository id, matching the class of the
* passed object. The codebase will not be written.
- *
+ *
* @param value a value type object to write.
*/
public void write_value(Serializable value)
@@ -145,17 +145,17 @@ public abstract class OutputStream
/**
* Writes a value type into the output stream, stating it has the given
* repository id.
- *
+ *
* The value type must implement either {@link CustomValue} (for user-defined
* writing method) or {@link StreamableValue} (for standard writing using code,
* generated by IDL compiler).
- *
+ *
* @param repository_id a repository id of the value type.
- *
+ *
* @param value a value type object to write.
*/
public void write_value(Serializable value, String repository_id)
{
Vio.write(this, value, repository_id);
}
-} \ No newline at end of file
+}