summaryrefslogtreecommitdiff
path: root/org/omg/IOP/CodecFactoryHelper.java
diff options
context:
space:
mode:
Diffstat (limited to 'org/omg/IOP/CodecFactoryHelper.java')
-rw-r--r--org/omg/IOP/CodecFactoryHelper.java12
1 files changed, 5 insertions, 7 deletions
diff --git a/org/omg/IOP/CodecFactoryHelper.java b/org/omg/IOP/CodecFactoryHelper.java
index 89404f7d5..d3dc40935 100644
--- a/org/omg/IOP/CodecFactoryHelper.java
+++ b/org/omg/IOP/CodecFactoryHelper.java
@@ -1,5 +1,5 @@
/* CodecFactoryHelper.java --
- Copyright (C) 2005 Free Software Foundation, Inc.
+ Copyright (C) 2005, 2006 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -41,10 +41,10 @@ package org.omg.IOP;
import gnu.CORBA.OrbRestricted;
import org.omg.CORBA.Any;
+import org.omg.CORBA.BAD_OPERATION;
import org.omg.CORBA.BAD_PARAM;
import org.omg.CORBA.CompletionStatus;
import org.omg.CORBA.MARSHAL;
-import org.omg.CORBA.ORB;
import org.omg.CORBA.TypeCode;
import org.omg.CORBA.portable.InputStream;
import org.omg.CORBA.portable.OutputStream;
@@ -120,15 +120,13 @@ public abstract class CodecFactoryHelper
* Narrow the given object to the CodecFactory. For the objects that are
* always local, this operation does not differ from the ordinary
* {@link #narrow} (ClassCastException will be thrown if narrowing something
- * different).
+ * different). See OMG issue 4158.
*
* @param obj the object to cast.
*
* @return the casted CodecFactory.
*
* @since 1.5
- *
- * @see OMG issue 4158.
*/
public static CodecFactory unchecked_narrow(org.omg.CORBA.Object obj)
{
@@ -141,7 +139,7 @@ public abstract class CodecFactoryHelper
*
* @specnote Suns implementation (1.4) throws this exception either.
*
- * @throws {@link MARSHAL}, minor code 0 and incomplete, always.
+ * @throws MARSHAL, minor code 0 and incomplete, always.
*/
public static CodecFactory read(InputStream input)
{
@@ -154,7 +152,7 @@ public abstract class CodecFactoryHelper
*
* @specnote Suns implementation (1.4) throws this exception either.
*
- * @throws {@link MARSHAL}, minor code 0 and incomplete, always.
+ * @throws MARSHAL, minor code 0 and incomplete, always.
*/
public static void write(OutputStream output, CodecFactory value)
{