diff options
Diffstat (limited to 'libjava/classpath/org/omg/DynamicAny')
35 files changed, 230 insertions, 230 deletions
diff --git a/libjava/classpath/org/omg/DynamicAny/AnySeqHelper.java b/libjava/classpath/org/omg/DynamicAny/AnySeqHelper.java index 31ed2ba0253..5dd08096dd0 100644 --- a/libjava/classpath/org/omg/DynamicAny/AnySeqHelper.java +++ b/libjava/classpath/org/omg/DynamicAny/AnySeqHelper.java @@ -113,4 +113,4 @@ public abstract class AnySeqHelper { org.omg.CORBA.AnySeqHelper.write(output, value); } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/DynAny.java b/libjava/classpath/org/omg/DynamicAny/DynAny.java index fd233631066..cdb7a42853e 100644 --- a/libjava/classpath/org/omg/DynamicAny/DynAny.java +++ b/libjava/classpath/org/omg/DynamicAny/DynAny.java @@ -68,4 +68,4 @@ import org.omg.CORBA.portable.IDLEntity; public interface DynAny extends DynAnyOperations, IDLEntity, org.omg.CORBA.Object, Serializable { -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/DynAnyFactoryHelper.java b/libjava/classpath/org/omg/DynamicAny/DynAnyFactoryHelper.java index 612ba71c3f8..2720656cc3a 100644 --- a/libjava/classpath/org/omg/DynamicAny/DynAnyFactoryHelper.java +++ b/libjava/classpath/org/omg/DynamicAny/DynAnyFactoryHelper.java @@ -55,10 +55,10 @@ import org.omg.CORBA.portable.OutputStream; * specifications, DynAnyFactory is always a local object, so the two methods of * this helper ({@link #read} and {@link #write} are not in use, always * throwing {@link MARSHAL}. - * + * * @specnote always throwing MARSHAL in read and write ensures compatibility * with other popular implementations like Sun's. - * + * * @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org) */ public abstract class DynAnyFactoryHelper @@ -66,7 +66,7 @@ public abstract class DynAnyFactoryHelper /** * Cast the passed object into the DynAnyFactory. As DynAnyFactory is a local * object, the method just uses java final_type cast. - * + * * @param obj the object to narrow. * @return narrowed instance. * @throws BAD_PARAM if the passed object is not a DynAnyFactory. @@ -83,23 +83,23 @@ public abstract class DynAnyFactoryHelper + " is not a DynAnyFactory"); } } - + /** * Narrow the given object to the DynAnyFactory. 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). See also OMG issue 4158. - * + * * @param obj the object to cast. - * + * * @return the casted DynAnyFactory. - * - * @since 1.5 + * + * @since 1.5 */ public static DynAnyFactory unchecked_narrow(org.omg.CORBA.Object obj) { return narrow(obj); - } + } /** * Get the final_type code of the {@link DynAnyFactory}. @@ -111,9 +111,9 @@ public abstract class DynAnyFactoryHelper /** * Insert the DynAnyFactory into the given Any. - * + * * @param any the Any to insert into. - * + * * @param that the DynAnyFactory to insert. */ public static void insert(Any any, DynAnyFactory that) @@ -123,7 +123,7 @@ public abstract class DynAnyFactoryHelper /** * Extract the DynAnyFactory from given Any. - * + * * @throws BAD_OPERATION if the passed Any does not contain DynAnyFactory. */ public static DynAnyFactory extract(Any any) @@ -133,7 +133,7 @@ public abstract class DynAnyFactoryHelper /** * Get the DynAnyFactory repository id. - * + * * @return "IDL:omg.org/DynamicAny/DynAnyFactory:1.0", always. */ public static String id() @@ -145,11 +145,11 @@ public abstract class DynAnyFactoryHelper * This should read DynAnyFactory from the CDR input stream, but (following * the JDK 1.5 API) it does not. The factory can only be obtained from the * ORB. - * + * * @param input a org.omg.CORBA.portable stream to read from. - * + * * @specenote Sun throws the same exception. - * + * * @throws MARSHAL always. */ public static DynAnyFactory read(InputStream input) @@ -160,11 +160,11 @@ public abstract class DynAnyFactoryHelper /** * This should read DynAnyFactory from the CDR input stream, but (following * the JDK 1.5 API) it does not. - * + * * @param output a org.omg.CORBA.portable stream to write into. - * + * * @specenote Sun throws the same exception. - * + * * @throws MARSHAL always. */ public static void write(OutputStream output, DynAnyFactory value) @@ -175,7 +175,7 @@ public abstract class DynAnyFactoryHelper /** * The package level method for throwing exception, explaining that the * operation is not applicable. - * + * * @param Id the Id for the typecode for that the operations was attempted to * perform. */ @@ -185,4 +185,4 @@ public abstract class DynAnyFactoryHelper m.minor = Minor.Inappropriate; throw m; } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/DynAnyFactoryPackage/InconsistentTypeCode.java b/libjava/classpath/org/omg/DynamicAny/DynAnyFactoryPackage/InconsistentTypeCode.java index fced4f704e8..bf1d2e97c42 100644 --- a/libjava/classpath/org/omg/DynamicAny/DynAnyFactoryPackage/InconsistentTypeCode.java +++ b/libjava/classpath/org/omg/DynamicAny/DynAnyFactoryPackage/InconsistentTypeCode.java @@ -79,4 +79,4 @@ public final class InconsistentTypeCode { super(why); } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/DynAnyFactoryPackage/InconsistentTypeCodeHelper.java b/libjava/classpath/org/omg/DynamicAny/DynAnyFactoryPackage/InconsistentTypeCodeHelper.java index 0184172265d..70313004f78 100644 --- a/libjava/classpath/org/omg/DynamicAny/DynAnyFactoryPackage/InconsistentTypeCodeHelper.java +++ b/libjava/classpath/org/omg/DynamicAny/DynAnyFactoryPackage/InconsistentTypeCodeHelper.java @@ -70,7 +70,7 @@ public abstract class InconsistentTypeCodeHelper /** * Insert the InconsistentTypeCode into the given Any. - * + * * @param any the Any to insert into. * @param that the InconsistentTypeCode to insert. */ @@ -97,7 +97,7 @@ public abstract class InconsistentTypeCodeHelper { BAD_OPERATION bad = new BAD_OPERATION("InconsistentTypeCode expected"); bad.initCause(cex); - bad.minor = Minor.Any; + bad.minor = Minor.Any; throw bad; } } @@ -137,4 +137,4 @@ public abstract class InconsistentTypeCodeHelper // Write the exception repository id. output.write_string(id()); } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/DynAnyHelper.java b/libjava/classpath/org/omg/DynamicAny/DynAnyHelper.java index 315cddbd2dc..e376367ef3f 100644 --- a/libjava/classpath/org/omg/DynamicAny/DynAnyHelper.java +++ b/libjava/classpath/org/omg/DynamicAny/DynAnyHelper.java @@ -54,10 +54,10 @@ import org.omg.CORBA.portable.OutputStream; * specifications, DynAny is always a local object, so the two methods of this * helper ({@link #read} and {@link #write} are not in use, always throwing * {@link MARSHAL}. - * + * * @specnote always throwing MARSHAL in read and write ensures compatibility * with other popular implementations like Sun's. - * + * * @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org) */ public abstract class DynAnyHelper @@ -65,7 +65,7 @@ public abstract class DynAnyHelper /** * Cast the passed object into the DynAny. As DynAny is a local object, the * method just uses java type cast. - * + * * @param obj the object to narrow. * @return narrowed instance. * @throws BAD_PARAM if the passed object is not a DynAny. @@ -81,23 +81,23 @@ public abstract class DynAnyHelper throw new BAD_PARAM(obj.getClass().getName() + " is not a DynAny"); } } - + /** * Narrow the given object to the DynAny. 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). See also OMG issue 4158. - * + * * @param obj the object to cast. - * + * * @return the casted DynAny. - * - * @since 1.5 + * + * @since 1.5 */ public static DynAny unchecked_narrow(org.omg.CORBA.Object obj) { return narrow(obj); - } + } /** * Get the type code of the {@link DynAny}. @@ -109,9 +109,9 @@ public abstract class DynAnyHelper /** * Insert the DynAny into the given Any. - * + * * @param any the Any to insert into. - * + * * @param that the DynAny to insert. */ public static void insert(Any any, DynAny that) @@ -121,7 +121,7 @@ public abstract class DynAnyHelper /** * Extract the DynAny from given Any. - * + * * @throws BAD_OPERATION if the passed Any does not contain DynAny. */ public static DynAny extract(Any any) @@ -131,7 +131,7 @@ public abstract class DynAnyHelper /** * Get the DynAny repository id. - * + * * @return "IDL:omg.org/DynamicAny/DynAny:1.0", always. */ public static String id() @@ -142,11 +142,11 @@ public abstract class DynAnyHelper /** * This should read DynAny from the CDR input stream, but (following the JDK * 1.5 API) it does not. - * + * * @param input a org.omg.CORBA.portable stream to read from. - * + * * @specenote Sun throws the same exception. - * + * * @throws MARSHAL always. */ public static DynAny read(InputStream input) @@ -157,15 +157,15 @@ public abstract class DynAnyHelper /** * This should read DynAny from the CDR input stream, but (following the JDK * 1.5 API) it does not. - * + * * @param output a org.omg.CORBA.portable stream to write into. - * + * * @specenote Sun throws the same exception. - * + * * @throws MARSHAL always. */ public static void write(OutputStream output, DynAny value) { throw new MARSHAL(DynAnyFactoryHelper.not_applicable(id())); } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/DynAnyPackage/InvalidValue.java b/libjava/classpath/org/omg/DynamicAny/DynAnyPackage/InvalidValue.java index c19eb76cd8f..7bae38c55c7 100644 --- a/libjava/classpath/org/omg/DynamicAny/DynAnyPackage/InvalidValue.java +++ b/libjava/classpath/org/omg/DynamicAny/DynAnyPackage/InvalidValue.java @@ -78,4 +78,4 @@ public final class InvalidValue { super(why); } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/DynAnyPackage/InvalidValueHelper.java b/libjava/classpath/org/omg/DynamicAny/DynAnyPackage/InvalidValueHelper.java index d27ad6a6b8b..cc880ba34a3 100644 --- a/libjava/classpath/org/omg/DynamicAny/DynAnyPackage/InvalidValueHelper.java +++ b/libjava/classpath/org/omg/DynamicAny/DynAnyPackage/InvalidValueHelper.java @@ -98,7 +98,7 @@ public abstract class InvalidValueHelper { BAD_OPERATION bad = new BAD_OPERATION("InvalidValue expected"); bad.initCause(cex); - bad.minor = Minor.Any; + bad.minor = Minor.Any; throw bad; } } @@ -138,4 +138,4 @@ public abstract class InvalidValueHelper // Write the exception repository id. output.write_string(id()); } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/DynAnyPackage/TypeMismatch.java b/libjava/classpath/org/omg/DynamicAny/DynAnyPackage/TypeMismatch.java index 3934abd2f37..810d9205842 100644 --- a/libjava/classpath/org/omg/DynamicAny/DynAnyPackage/TypeMismatch.java +++ b/libjava/classpath/org/omg/DynamicAny/DynAnyPackage/TypeMismatch.java @@ -78,4 +78,4 @@ public final class TypeMismatch { super(why); } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/DynAnyPackage/TypeMismatchHelper.java b/libjava/classpath/org/omg/DynamicAny/DynAnyPackage/TypeMismatchHelper.java index 7d4fc878938..92644515c1d 100644 --- a/libjava/classpath/org/omg/DynamicAny/DynAnyPackage/TypeMismatchHelper.java +++ b/libjava/classpath/org/omg/DynamicAny/DynAnyPackage/TypeMismatchHelper.java @@ -98,7 +98,7 @@ public abstract class TypeMismatchHelper { BAD_OPERATION bad = new BAD_OPERATION("TypeMismatch expected"); bad.initCause(cex); - bad.minor = Minor.Any; + bad.minor = Minor.Any; throw bad; } } @@ -138,4 +138,4 @@ public abstract class TypeMismatchHelper // Write the exception repository id. output.write_string(id()); } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/DynAnySeqHelper.java b/libjava/classpath/org/omg/DynamicAny/DynAnySeqHelper.java index f7550fd7969..468083afe5e 100644 --- a/libjava/classpath/org/omg/DynamicAny/DynAnySeqHelper.java +++ b/libjava/classpath/org/omg/DynamicAny/DynAnySeqHelper.java @@ -99,7 +99,7 @@ public abstract class DynAnySeqHelper { BAD_OPERATION bad = new BAD_OPERATION("DynAnySeq expected"); bad.initCause(cex); - bad.minor = Minor.Any; + bad.minor = Minor.Any; throw bad; } } @@ -143,4 +143,4 @@ public abstract class DynAnySeqHelper { throw new MARSHAL(DynAnyFactoryHelper.not_applicable(id())); } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/DynArrayHelper.java b/libjava/classpath/org/omg/DynamicAny/DynArrayHelper.java index 4cd3e3a52cf..d9e76eb0633 100644 --- a/libjava/classpath/org/omg/DynamicAny/DynArrayHelper.java +++ b/libjava/classpath/org/omg/DynamicAny/DynArrayHelper.java @@ -53,10 +53,10 @@ import org.omg.CORBA.portable.OutputStream; * specifications, DynArray is always a local object, so the two methods of this * helper ({@link #read} and {@link #write} are not in use, always throwing * {@link MARSHAL}. - * + * * @specnote always throwing MARSHAL in read and write ensures compatibility * with other popular implementations like Sun's. - * + * * @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org) */ public abstract class DynArrayHelper @@ -64,7 +64,7 @@ public abstract class DynArrayHelper /** * Cast the passed object into the DynArray. As DynArray is a local object, * the method just uses java type cast. - * + * * @param obj the object to narrow. * @return narrowed instance. * @throws BAD_PARAM if the passed object is not a DynArray. @@ -80,23 +80,23 @@ public abstract class DynArrayHelper throw new BAD_PARAM(obj.getClass().getName() + " is not a DynArray"); } } - + /** * Narrow the given object to the DynArray. 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). See OMG issue 4158. - * + * * @param obj the object to cast. - * + * * @return the casted DynArray. - * - * @since 1.5 - */ + * + * @since 1.5 + */ public static DynArray unchecked_narrow(org.omg.CORBA.Object obj) { return narrow(obj); - } + } /** * Get the type code of the {@link DynArray}. @@ -108,9 +108,9 @@ public abstract class DynArrayHelper /** * Insert the DynArray into the given Any. - * + * * @param any the Any to insert into. - * + * * @param that the DynArray to insert. */ public static void insert(Any any, DynArray that) @@ -120,7 +120,7 @@ public abstract class DynArrayHelper /** * Extract the DynArray from given Any. - * + * * @throws BAD_OPERATION if the passed Any does not contain DynArray. */ public static DynArray extract(Any any) @@ -130,7 +130,7 @@ public abstract class DynArrayHelper /** * Get the DynArray repository id. - * + * * @return "IDL:omg.org/DynamicAny/DynArray:1.0", always. */ public static String id() @@ -141,11 +141,11 @@ public abstract class DynArrayHelper /** * This should read DynArray from the CDR input stream, but (following the JDK * 1.5 API) it does not. - * + * * @param input a org.omg.CORBA.portable stream to read from. - * + * * @specenote Sun throws the same exception. - * + * * @throws MARSHAL always. */ public static DynArray read(InputStream input) @@ -156,15 +156,15 @@ public abstract class DynArrayHelper /** * This should read DynArray from the CDR input stream, but (following the JDK * 1.5 API) it does not. - * + * * @param output a org.omg.CORBA.portable stream to write into. - * + * * @specenote Sun throws the same exception. - * + * * @throws MARSHAL always. */ public static void write(OutputStream output, DynArray value) { throw new MARSHAL(DynAnyFactoryHelper.not_applicable(id())); } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/DynEnumHelper.java b/libjava/classpath/org/omg/DynamicAny/DynEnumHelper.java index da63e844f91..9599d72b581 100644 --- a/libjava/classpath/org/omg/DynamicAny/DynEnumHelper.java +++ b/libjava/classpath/org/omg/DynamicAny/DynEnumHelper.java @@ -54,10 +54,10 @@ import org.omg.CORBA.portable.OutputStream; * specifications, DynEnum is always a local object, so the two methods of this * helper ({@link #read} and {@link #write} are not in use, always throwing * {@link MARSHAL}. - * + * * @specnote always throwing MARSHAL in read and write ensures compatibility * with other popular implementations like Sun's. - * + * * @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org) */ public abstract class DynEnumHelper @@ -65,7 +65,7 @@ public abstract class DynEnumHelper /** * Cast the passed object into the DynEnum. As DynEnum is a local object, the * method just uses java type cast. - * + * * @param obj the object to narrow. * @return narrowed instance. * @throws BAD_PARAM if the passed object is not a DynEnum. @@ -81,23 +81,23 @@ public abstract class DynEnumHelper throw new BAD_PARAM(obj.getClass().getName() + " is not a DynEnum"); } } - + /** * Narrow the given object to the DynEnum. 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). See OMG issue 4158. - * + * * @param obj the object to cast. - * + * * @return the casted DynEnum. - * - * @since 1.5 + * + * @since 1.5 */ public static DynEnum unchecked_narrow(org.omg.CORBA.Object obj) { return narrow(obj); - } + } /** * Get the type code of the {@link DynEnum}. @@ -109,9 +109,9 @@ public abstract class DynEnumHelper /** * Insert the DynEnum into the given Any. - * + * * @param any the Any to insert into. - * + * * @param that the DynEnum to insert. */ public static void insert(Any any, DynEnum that) @@ -121,7 +121,7 @@ public abstract class DynEnumHelper /** * Extract the DynEnum from given Any. - * + * * @throws BAD_OPERATION if the passed Any does not contain DynEnum. */ public static DynEnum extract(Any any) @@ -131,7 +131,7 @@ public abstract class DynEnumHelper /** * Get the DynEnum repository id. - * + * * @return "IDL:omg.org/DynamicAny/DynEnum:1.0", always. */ public static String id() @@ -142,11 +142,11 @@ public abstract class DynEnumHelper /** * This should read DynEnum from the CDR input stream, but (following the JDK * 1.5 API) it does not. - * + * * @param input a org.omg.CORBA.portable stream to read from. - * + * * @specenote Sun throws the same exception. - * + * * @throws MARSHAL always. */ public static DynEnum read(InputStream input) @@ -157,15 +157,15 @@ public abstract class DynEnumHelper /** * This should read DynEnum from the CDR input stream, but (following the JDK * 1.5 API) it does not. - * + * * @param output a org.omg.CORBA.portable stream to write into. - * + * * @specenote Sun throws the same exception. - * + * * @throws MARSHAL always. */ public static void write(OutputStream output, DynEnum value) { throw new MARSHAL(DynAnyFactoryHelper.not_applicable(id())); } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/DynFixedHelper.java b/libjava/classpath/org/omg/DynamicAny/DynFixedHelper.java index e730d43bb85..213eb031845 100644 --- a/libjava/classpath/org/omg/DynamicAny/DynFixedHelper.java +++ b/libjava/classpath/org/omg/DynamicAny/DynFixedHelper.java @@ -54,10 +54,10 @@ import org.omg.CORBA.portable.OutputStream; * specifications, DynFixed is always a local object, so the two methods of this * helper ({@link #read} and {@link #write} are not in use, always throwing * {@link MARSHAL}. - * + * * @specnote always throwing MARSHAL in read and write ensures compatibility * with other popular implementations like Sun's. - * + * * @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org) */ public abstract class DynFixedHelper @@ -65,7 +65,7 @@ public abstract class DynFixedHelper /** * Cast the passed object into the DynFixed. As DynFixed is a local object, * the method just uses java type cast. - * + * * @param obj the object to narrow. * @return narrowed instance. * @throws BAD_PARAM if the passed object is not a DynFixed. @@ -81,23 +81,23 @@ public abstract class DynFixedHelper throw new BAD_PARAM(obj.getClass().getName() + " is not a DynFixed"); } } - + /** * Narrow the given object to the DynFixed. 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). See OMG issue 4158. - * + * * @param obj the object to cast. - * + * * @return the casted DynFixed. - * - * @since 1.5 + * + * @since 1.5 */ public static DynFixed unchecked_narrow(org.omg.CORBA.Object obj) { return narrow(obj); - } + } /** * Get the type code of the {@link DynFixed}. @@ -109,9 +109,9 @@ public abstract class DynFixedHelper /** * Insert the DynFixed into the given Any. - * + * * @param any the Any to insert into. - * + * * @param that the DynFixed to insert. */ public static void insert(Any any, DynFixed that) @@ -121,7 +121,7 @@ public abstract class DynFixedHelper /** * Extract the DynFixed from given Any. - * + * * @throws BAD_OPERATION if the passed Any does not contain DynFixed. */ public static DynFixed extract(Any any) @@ -131,7 +131,7 @@ public abstract class DynFixedHelper /** * Get the DynFixed repository id. - * + * * @return "IDL:omg.org/DynamicAny/DynFixed:1.0", always. */ public static String id() @@ -142,11 +142,11 @@ public abstract class DynFixedHelper /** * This should read DynFixed from the CDR input stream, but (following the JDK * 1.5 API) it does not. - * + * * @param input a org.omg.CORBA.portable stream to read from. - * + * * @specenote Sun throws the same exception. - * + * * @throws MARSHAL always. */ public static DynFixed read(InputStream input) @@ -157,15 +157,15 @@ public abstract class DynFixedHelper /** * This should read DynFixed from the CDR input stream, but (following the JDK * 1.5 API) it does not. - * + * * @param output a org.omg.CORBA.portable stream to write into. - * + * * @specenote Sun throws the same exception. - * + * * @throws MARSHAL always. */ public static void write(OutputStream output, DynFixed value) { throw new MARSHAL(DynAnyFactoryHelper.not_applicable(id())); } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/DynSequenceHelper.java b/libjava/classpath/org/omg/DynamicAny/DynSequenceHelper.java index f330108b0eb..e2a859b63d4 100644 --- a/libjava/classpath/org/omg/DynamicAny/DynSequenceHelper.java +++ b/libjava/classpath/org/omg/DynamicAny/DynSequenceHelper.java @@ -53,10 +53,10 @@ import org.omg.CORBA.portable.OutputStream; * specifications, DynSequence is always a local object, so the two methods of * this helper ({@link #read} and {@link #write} are not in use, always * throwing {@link MARSHAL}. - * + * * @specnote always throwing MARSHAL in read and write ensures compatibility * with other popular implementations like Sun's. - * + * * @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org) */ public abstract class DynSequenceHelper @@ -64,7 +64,7 @@ public abstract class DynSequenceHelper /** * Cast the passed object into the DynSequence. As DynSequence is a local * object, the method just uses java type cast. - * + * * @param obj the object to narrow. * @return narrowed instance. * @throws BAD_PARAM if the passed object is not a DynSequence. @@ -80,23 +80,23 @@ public abstract class DynSequenceHelper throw new BAD_PARAM(obj.getClass().getName() + " is not a DynSequence"); } } - + /** * Narrow the given object to the DynSequence. 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). See OMG issue 4158. - * + * * @param obj the object to cast. - * + * * @return the casted DynSequence. - * - * @since 1.5 + * + * @since 1.5 */ public static DynSequence unchecked_narrow(org.omg.CORBA.Object obj) { return narrow(obj); - } + } /** * Get the type code of the {@link DynSequence}. @@ -108,9 +108,9 @@ public abstract class DynSequenceHelper /** * Insert the DynSequence into the given Any. - * + * * @param any the Any to insert into. - * + * * @param that the DynSequence to insert. */ public static void insert(Any any, DynSequence that) @@ -120,7 +120,7 @@ public abstract class DynSequenceHelper /** * Extract the DynSequence from given Any. - * + * * @throws BAD_OPERATION if the passed Any does not contain DynSequence. */ public static DynSequence extract(Any any) @@ -130,7 +130,7 @@ public abstract class DynSequenceHelper /** * Get the DynSequence repository id. - * + * * @return "IDL:omg.org/DynamicAny/DynSequence:1.0", always. */ public static String id() @@ -141,11 +141,11 @@ public abstract class DynSequenceHelper /** * This should read DynSequence from the CDR input stream, but (following the * JDK 1.5 API) it does not. - * + * * @param input a org.omg.CORBA.portable stream to read from. - * + * * @specenote Sun throws the same exception. - * + * * @throws MARSHAL always. */ public static DynSequence read(InputStream input) @@ -156,15 +156,15 @@ public abstract class DynSequenceHelper /** * This should read DynSequence from the CDR input stream, but (following the * JDK 1.5 API) it does not. - * + * * @param output a org.omg.CORBA.portable stream to write into. - * + * * @specenote Sun throws the same exception. - * + * * @throws MARSHAL always. */ public static void write(OutputStream output, DynSequence value) { throw new MARSHAL(DynAnyFactoryHelper.not_applicable(id())); } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/DynStructHelper.java b/libjava/classpath/org/omg/DynamicAny/DynStructHelper.java index 077b7d09824..ed049a10535 100644 --- a/libjava/classpath/org/omg/DynamicAny/DynStructHelper.java +++ b/libjava/classpath/org/omg/DynamicAny/DynStructHelper.java @@ -53,10 +53,10 @@ import org.omg.CORBA.portable.OutputStream; * specifications, DynStruct is always a local object, so the two methods of * this helper ({@link #read} and {@link #write} are not in use, always * throwing {@link MARSHAL}. - * + * * @specnote always throwing MARSHAL in read and write ensures compatibility * with other popular implementations like Sun's. - * + * * @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org) */ public abstract class DynStructHelper @@ -64,7 +64,7 @@ public abstract class DynStructHelper /** * Cast the passed object into the DynStruct. As DynStruct is a local object, * the method just uses java type cast. - * + * * @param obj the object to narrow. * @return narrowed instance. * @throws BAD_PARAM if the passed object is not a DynStruct. @@ -80,23 +80,23 @@ public abstract class DynStructHelper throw new BAD_PARAM(obj.getClass().getName() + " is not a DynStruct"); } } - + /** * Narrow the given object to the DynStruct. 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). See OMG issue 4158. - * + * * @param obj the object to cast. - * + * * @return the casted DynStruct. - * - * @since 1.5 + * + * @since 1.5 */ public static DynStruct unchecked_narrow(org.omg.CORBA.Object obj) { return narrow(obj); - } + } /** * Get the type code of the {@link DynStruct}. @@ -108,9 +108,9 @@ public abstract class DynStructHelper /** * Insert the DynStruct into the given Any. - * + * * @param any the Any to insert into. - * + * * @param that the DynStruct to insert. */ public static void insert(Any any, DynStruct that) @@ -120,7 +120,7 @@ public abstract class DynStructHelper /** * Extract the DynStruct from given Any. - * + * * @throws BAD_OPERATION if the passed Any does not contain DynStruct. */ public static DynStruct extract(Any any) @@ -130,7 +130,7 @@ public abstract class DynStructHelper /** * Get the DynStruct repository id. - * + * * @return "IDL:omg.org/DynamicAny/DynStruct:1.0", always. */ public static String id() @@ -141,11 +141,11 @@ public abstract class DynStructHelper /** * This should read DynStruct from the CDR input stream, but (following the * JDK 1.5 API) it does not. - * + * * @param input a org.omg.CORBA.portable stream to read from. - * + * * @specenote Sun throws the same exception. - * + * * @throws MARSHAL always. */ public static DynStruct read(InputStream input) @@ -156,15 +156,15 @@ public abstract class DynStructHelper /** * This should read DynStruct from the CDR input stream, but (following the * JDK 1.5 API) it does not. - * + * * @param output a org.omg.CORBA.portable stream to write into. - * + * * @specenote Sun throws the same exception. - * + * * @throws MARSHAL always. */ public static void write(OutputStream output, DynStruct value) { throw new MARSHAL(DynAnyFactoryHelper.not_applicable(id())); } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/DynUnionHelper.java b/libjava/classpath/org/omg/DynamicAny/DynUnionHelper.java index f1016d078af..f39ff664123 100644 --- a/libjava/classpath/org/omg/DynamicAny/DynUnionHelper.java +++ b/libjava/classpath/org/omg/DynamicAny/DynUnionHelper.java @@ -53,10 +53,10 @@ import org.omg.CORBA.portable.OutputStream; * specifications, DynUnion is always a local object, so the two methods of this * helper ({@link #read} and {@link #write} are not in use, always throwing * {@link MARSHAL}. - * + * * @specnote always throwing MARSHAL in read and write ensures compatibility * with other popular implementations like Sun's. - * + * * @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org) */ public abstract class DynUnionHelper @@ -64,7 +64,7 @@ public abstract class DynUnionHelper /** * Cast the passed object into the DynUnion. As DynUnion is a local object, * the method just uses java type cast. - * + * * @param obj the object to narrow. * @return narrowed instance. * @throws BAD_PARAM if the passed object is not a DynUnion. @@ -80,23 +80,23 @@ public abstract class DynUnionHelper throw new BAD_PARAM(obj.getClass().getName() + " is not a DynUnion"); } } - + /** * Narrow the given object to the DynUnion. 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). See OMG issue 4158. - * + * * @param obj the object to cast. - * + * * @return the casted DynUnion. - * - * @since 1.5 + * + * @since 1.5 */ public static DynUnion unchecked_narrow(org.omg.CORBA.Object obj) { return narrow(obj); - } + } /** * Get the type code of the {@link DynUnion}. @@ -108,9 +108,9 @@ public abstract class DynUnionHelper /** * Insert the DynUnion into the given Any. - * + * * @param any the Any to insert into. - * + * * @param that the DynUnion to insert. */ public static void insert(Any any, DynUnion that) @@ -120,7 +120,7 @@ public abstract class DynUnionHelper /** * Extract the DynUnion from given Any. - * + * * @throws BAD_OPERATION if the passed Any does not contain DynUnion. */ public static DynUnion extract(Any any) @@ -130,7 +130,7 @@ public abstract class DynUnionHelper /** * Get the DynUnion repository id. - * + * * @return "IDL:omg.org/DynamicAny/DynUnion:1.0", always. */ public static String id() @@ -141,11 +141,11 @@ public abstract class DynUnionHelper /** * This should read DynUnion from the CDR input stream, but (following the JDK * 1.5 API) it does not. - * + * * @param input a org.omg.CORBA.portable stream to read from. - * + * * @specenote Sun throws the same exception. - * + * * @throws MARSHAL always. */ public static DynUnion read(InputStream input) @@ -156,15 +156,15 @@ public abstract class DynUnionHelper /** * This should read DynUnion from the CDR input stream, but (following the JDK * 1.5 API) it does not. - * + * * @param output a org.omg.CORBA.portable stream to write into. - * + * * @specenote Sun throws the same exception. - * + * * @throws MARSHAL always. */ public static void write(OutputStream output, DynUnion value) { throw new MARSHAL(DynAnyFactoryHelper.not_applicable(id())); } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/DynValueBox.java b/libjava/classpath/org/omg/DynamicAny/DynValueBox.java index bd758b50caa..15ff131a9d8 100644 --- a/libjava/classpath/org/omg/DynamicAny/DynValueBox.java +++ b/libjava/classpath/org/omg/DynamicAny/DynValueBox.java @@ -52,4 +52,4 @@ public interface DynValueBox extends DynValueBoxOperations, DynValueCommon, DynAny, IDLEntity, org.omg.CORBA.Object, Serializable { -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/DynValueCommonOperations.java b/libjava/classpath/org/omg/DynamicAny/DynValueCommonOperations.java index 31c31678e60..e16e42888a5 100644 --- a/libjava/classpath/org/omg/DynamicAny/DynValueCommonOperations.java +++ b/libjava/classpath/org/omg/DynamicAny/DynValueCommonOperations.java @@ -41,7 +41,7 @@ package org.omg.DynamicAny; /** * Provides operations, applicable to {@link DynAny}s that may hold CORBA * <code>null</code>. - * + * * @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org) */ public interface DynValueCommonOperations @@ -49,7 +49,7 @@ public interface DynValueCommonOperations { /** * Check if this {@link DynAny} is holding the <code>null</code>. - * + * * @return true if this {@link DynAny} is holding the <code>null</code>, * false otherwise. */ diff --git a/libjava/classpath/org/omg/DynamicAny/DynValueHelper.java b/libjava/classpath/org/omg/DynamicAny/DynValueHelper.java index 17d9bbc5a8b..b8debb15f15 100644 --- a/libjava/classpath/org/omg/DynamicAny/DynValueHelper.java +++ b/libjava/classpath/org/omg/DynamicAny/DynValueHelper.java @@ -53,10 +53,10 @@ import org.omg.CORBA.portable.OutputStream; * specifications, DynValue is always a local object, so the two methods of this * helper ({@link #read} and {@link #write} are not in use, always throwing * {@link MARSHAL}. - * + * * @specnote always throwing MARSHAL in read and write ensures compatibility * with other popular implementations like Sun's. - * + * * @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org) */ public abstract class DynValueHelper @@ -64,7 +64,7 @@ public abstract class DynValueHelper /** * Cast the passed object into the DynValue. As DynValue is a local object, * the method just uses java type cast. - * + * * @param obj the object to narrow. * @return narrowed instance. * @throws BAD_PARAM if the passed object is not a DynValue. @@ -80,23 +80,23 @@ public abstract class DynValueHelper throw new BAD_PARAM(obj.getClass().getName() + " is not a DynValue"); } } - + /** * Narrow the given object to the DynValue. 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). See OMG issue 4158. - * + * * @param obj the object to cast. - * + * * @return the casted DynValue. - * - * @since 1.5 + * + * @since 1.5 */ public static DynValue unchecked_narrow(org.omg.CORBA.Object obj) { return narrow(obj); - } + } /** * Get the type code of the {@link DynValue}. @@ -108,9 +108,9 @@ public abstract class DynValueHelper /** * Insert the DynValue into the given Any. - * + * * @param any the Any to insert into. - * + * * @param that the DynValue to insert. */ public static void insert(Any any, DynValue that) @@ -120,7 +120,7 @@ public abstract class DynValueHelper /** * Extract the DynValue from given Any. - * + * * @throws BAD_OPERATION if the passed Any does not contain DynValue. */ public static DynValue extract(Any any) @@ -130,7 +130,7 @@ public abstract class DynValueHelper /** * Get the DynValue repository id. - * + * * @return "IDL:omg.org/DynamicAny/DynValue:1.0", always. */ public static String id() @@ -141,11 +141,11 @@ public abstract class DynValueHelper /** * This should read DynValue from the CDR input stream, but (following the JDK * 1.5 API) it does not. - * + * * @param input a org.omg.CORBA.portable stream to read from. - * + * * @specenote Sun throws the same exception. - * + * * @throws MARSHAL always. */ public static DynValue read(InputStream input) @@ -156,15 +156,15 @@ public abstract class DynValueHelper /** * This should read DynValue from the CDR input stream, but (following the JDK * 1.5 API) it does not. - * + * * @param output a org.omg.CORBA.portable stream to write into. - * + * * @specenote Sun throws the same exception. - * + * * @throws MARSHAL always. */ public static void write(OutputStream output, DynValue value) { throw new MARSHAL(DynAnyFactoryHelper.not_applicable(id())); } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/FieldNameHelper.java b/libjava/classpath/org/omg/DynamicAny/FieldNameHelper.java index fb5ea1c7fc7..dcc667b4296 100644 --- a/libjava/classpath/org/omg/DynamicAny/FieldNameHelper.java +++ b/libjava/classpath/org/omg/DynamicAny/FieldNameHelper.java @@ -117,4 +117,4 @@ public abstract class FieldNameHelper { ostream.write_string(value); } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/NameDynAnyPairHelper.java b/libjava/classpath/org/omg/DynamicAny/NameDynAnyPairHelper.java index 4e133a51344..edf51fa5eef 100644 --- a/libjava/classpath/org/omg/DynamicAny/NameDynAnyPairHelper.java +++ b/libjava/classpath/org/omg/DynamicAny/NameDynAnyPairHelper.java @@ -80,7 +80,7 @@ public abstract class NameDynAnyPairHelper { BAD_OPERATION bad = new BAD_OPERATION("NameDynAnyPair expected"); bad.initCause(cex); - bad.minor = Minor.Any; + bad.minor = Minor.Any; throw bad; } } @@ -105,16 +105,16 @@ public abstract class NameDynAnyPairHelper { ORB orb = OrbRestricted.Singleton; StructMember[] members = new StructMember[ 2 ]; - + TypeCode field; - + field = orb.create_alias_tc("IDL:omg.org/DynamicAny/FieldName:1.0", "FieldName", orb.get_primitive_tc(TCKind.tk_string) ); members [ 0 ] = new StructMember("id", field, null); - + field = DynAnyHelper.type(); members [ 1 ] = new StructMember("value", field, null); return orb.create_struct_tc(id(), "NameDynAnyPair", members); @@ -161,4 +161,4 @@ public abstract class NameDynAnyPairHelper { throw new MARSHAL(DynAnyFactoryHelper.not_applicable(id())); } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/NameDynAnyPairSeqHelper.java b/libjava/classpath/org/omg/DynamicAny/NameDynAnyPairSeqHelper.java index 817ed8a70cc..067d01a3c38 100644 --- a/libjava/classpath/org/omg/DynamicAny/NameDynAnyPairSeqHelper.java +++ b/libjava/classpath/org/omg/DynamicAny/NameDynAnyPairSeqHelper.java @@ -98,7 +98,7 @@ public abstract class NameDynAnyPairSeqHelper { BAD_OPERATION bad = new BAD_OPERATION("NameDynAnyPairSeq expected"); bad.initCause(cex); - bad.minor = Minor.Any; + bad.minor = Minor.Any; throw bad; } } @@ -142,4 +142,4 @@ public abstract class NameDynAnyPairSeqHelper { throw new MARSHAL(DynAnyFactoryHelper.not_applicable(id())); } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/NameValuePair.java b/libjava/classpath/org/omg/DynamicAny/NameValuePair.java index e0ce752a57f..359fac3847b 100644 --- a/libjava/classpath/org/omg/DynamicAny/NameValuePair.java +++ b/libjava/classpath/org/omg/DynamicAny/NameValuePair.java @@ -87,4 +87,4 @@ public final class NameValuePair id = aName; value = aValue; } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/NameValuePairHelper.java b/libjava/classpath/org/omg/DynamicAny/NameValuePairHelper.java index 75bbf9a7433..e62074d83b9 100644 --- a/libjava/classpath/org/omg/DynamicAny/NameValuePairHelper.java +++ b/libjava/classpath/org/omg/DynamicAny/NameValuePairHelper.java @@ -68,16 +68,16 @@ public abstract class NameValuePairHelper { ORB orb = OrbRestricted.Singleton; StructMember[] members = new StructMember[ 2 ]; - + TypeCode field; - + field = orb.create_alias_tc("IDL:omg.org/DynamicAny/FieldName:1.0", "FieldName", orb.get_primitive_tc(TCKind.tk_string) ); members [ 0 ] = new StructMember("id", field, null); - + field = orb.get_primitive_tc(TCKind.tk_any); members [ 1 ] = new StructMember("value", field, null); return orb.create_struct_tc(id(), "NameValuePair", members); @@ -111,7 +111,7 @@ public abstract class NameValuePairHelper { BAD_OPERATION bad = new BAD_OPERATION("NameValuePair expected"); bad.initCause(cex); - bad.minor = Minor.Any; + bad.minor = Minor.Any; throw bad; } } @@ -150,4 +150,4 @@ public abstract class NameValuePairHelper output.write_string(value.id); output.write_any(value.value); } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/NameValuePairSeqHelper.java b/libjava/classpath/org/omg/DynamicAny/NameValuePairSeqHelper.java index 018ee7d2d9c..4bcd7f8b51c 100644 --- a/libjava/classpath/org/omg/DynamicAny/NameValuePairSeqHelper.java +++ b/libjava/classpath/org/omg/DynamicAny/NameValuePairSeqHelper.java @@ -91,7 +91,7 @@ public abstract class NameValuePairSeqHelper { BAD_OPERATION bad = new BAD_OPERATION("NameValuePairSeq expected"); bad.initCause(cex); - bad.minor = Minor.Any; + bad.minor = Minor.Any; throw bad; } } @@ -138,4 +138,4 @@ public abstract class NameValuePairSeqHelper NameValuePairHelper.write(output, value [ i0 ]); } } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/_DynAnyFactoryStub.java b/libjava/classpath/org/omg/DynamicAny/_DynAnyFactoryStub.java index d72ebabbd79..dcfb9b59e3c 100644 --- a/libjava/classpath/org/omg/DynamicAny/_DynAnyFactoryStub.java +++ b/libjava/classpath/org/omg/DynamicAny/_DynAnyFactoryStub.java @@ -117,4 +117,4 @@ public class _DynAnyFactoryStub static String NOT_APPLICABLE = "DynAnyFactory is always local objects. " + "It is never accessed on remote side via stub."; -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/_DynAnyStub.java b/libjava/classpath/org/omg/DynamicAny/_DynAnyStub.java index fa19da14463..1a81be30613 100644 --- a/libjava/classpath/org/omg/DynamicAny/_DynAnyStub.java +++ b/libjava/classpath/org/omg/DynamicAny/_DynAnyStub.java @@ -625,4 +625,4 @@ public class _DynAnyStub static String NOT_APPLICABLE = "DynAnys are always local objects. " + "They and are never accessed on remote side via stubs."; -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/_DynArrayStub.java b/libjava/classpath/org/omg/DynamicAny/_DynArrayStub.java index fc7ba978b3f..74e763b3784 100644 --- a/libjava/classpath/org/omg/DynamicAny/_DynArrayStub.java +++ b/libjava/classpath/org/omg/DynamicAny/_DynArrayStub.java @@ -125,7 +125,7 @@ public class _DynArrayStub { throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE); } - + /** * The remote call of DynAny methods is not possible. * @@ -664,4 +664,4 @@ public class _DynArrayStub throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE); } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/_DynEnumStub.java b/libjava/classpath/org/omg/DynamicAny/_DynEnumStub.java index fd3e9db7eb1..e56ed75175e 100644 --- a/libjava/classpath/org/omg/DynamicAny/_DynEnumStub.java +++ b/libjava/classpath/org/omg/DynamicAny/_DynEnumStub.java @@ -125,7 +125,7 @@ public class _DynEnumStub { throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE); } - + /** * The remote call of DynAny methods is not possible. * @@ -664,4 +664,4 @@ public class _DynEnumStub throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE); } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/_DynFixedStub.java b/libjava/classpath/org/omg/DynamicAny/_DynFixedStub.java index 5fab8b1b2e7..759b48a4e2f 100644 --- a/libjava/classpath/org/omg/DynamicAny/_DynFixedStub.java +++ b/libjava/classpath/org/omg/DynamicAny/_DynFixedStub.java @@ -643,4 +643,4 @@ public class _DynFixedStub throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE); } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/_DynSequenceStub.java b/libjava/classpath/org/omg/DynamicAny/_DynSequenceStub.java index 0fdc19d63ea..488a7de9cf1 100644 --- a/libjava/classpath/org/omg/DynamicAny/_DynSequenceStub.java +++ b/libjava/classpath/org/omg/DynamicAny/_DynSequenceStub.java @@ -149,7 +149,7 @@ public class _DynSequenceStub { throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE); } - + /** * The remote call of DynAny methods is not possible. * @@ -688,4 +688,4 @@ public class _DynSequenceStub throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE); } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/_DynStructStub.java b/libjava/classpath/org/omg/DynamicAny/_DynStructStub.java index 73e7650b343..907f3c83468 100644 --- a/libjava/classpath/org/omg/DynamicAny/_DynStructStub.java +++ b/libjava/classpath/org/omg/DynamicAny/_DynStructStub.java @@ -151,7 +151,7 @@ public class _DynStructStub { throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE); } - + /** * The remote call of DynAny methods is not possible. * @@ -690,4 +690,4 @@ public class _DynStructStub throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE); } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/_DynUnionStub.java b/libjava/classpath/org/omg/DynamicAny/_DynUnionStub.java index 8328b5e8694..6789a34e8a1 100644 --- a/libjava/classpath/org/omg/DynamicAny/_DynUnionStub.java +++ b/libjava/classpath/org/omg/DynamicAny/_DynUnionStub.java @@ -183,7 +183,7 @@ public class _DynUnionStub { throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE); } - + /** * The remote call of DynAny methods is not possible. * @@ -722,4 +722,4 @@ public class _DynUnionStub throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE); } -}
\ No newline at end of file +} diff --git a/libjava/classpath/org/omg/DynamicAny/_DynValueStub.java b/libjava/classpath/org/omg/DynamicAny/_DynValueStub.java index a781772c560..fffccfe0e8e 100644 --- a/libjava/classpath/org/omg/DynamicAny/_DynValueStub.java +++ b/libjava/classpath/org/omg/DynamicAny/_DynValueStub.java @@ -183,7 +183,7 @@ public class _DynValueStub { throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE); } - + /** * The remote call of DynAny methods is not possible. * @@ -722,4 +722,4 @@ public class _DynValueStub throw new MARSHAL(_DynAnyStub.NOT_APPLICABLE); } -}
\ No newline at end of file +} |