aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/org/omg/CORBA_2_3/portable/OutputStream.java
diff options
context:
space:
mode:
authorgandalf <gandalf@138bc75d-0d04-0410-961f-82ee72b054a4>2012-03-09 13:41:52 +0000
committergandalf <gandalf@138bc75d-0d04-0410-961f-82ee72b054a4>2012-03-09 13:41:52 +0000
commit9cf4b685f6d9ff5a5d07999a6b46443ac6269fea (patch)
treebd7953038bd9018b469d5a2759e9fd9af02ce7f1 /libjava/classpath/org/omg/CORBA_2_3/portable/OutputStream.java
parent720912581f984fc206614e0711a9538090890eee (diff)
Update to Classpath 0.99.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/CLASSPATH@185138 138bc75d-0d04-0410-961f-82ee72b054a4
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
+}