diff --git a/src/share/classes/com/sun/tools/corba/se/idl/constExpr/Expression.java b/src/share/classes/com/sun/tools/corba/se/idl/constExpr/Expression.java index 1dc4583e5686053439a8275dd3ef82af84f40301..99d41510b02136798a4a558041047ca1d2c812dc 100644 --- a/src/share/classes/com/sun/tools/corba/se/idl/constExpr/Expression.java +++ b/src/share/classes/com/sun/tools/corba/se/idl/constExpr/Expression.java @@ -123,7 +123,7 @@ public abstract class Expression /** * Coerces a number to the target type of this expression. - * @parm number The number to coerce. + * @param obj The number to coerce. * @return the value of number coerced to the (target) type of * this expression. **/ @@ -142,7 +142,7 @@ public abstract class Expression /** * Coerces an integral value (BigInteger) to its corresponding unsigned * representation, if the target type of this expression is unsigned. - * @parm b The BigInteger to be coerced. + * @param b The BigInteger to be coerced. * @return the value of an integral type coerced to its corresponding * unsigned integral type, if the target type of this expression is * unsigned. @@ -170,7 +170,7 @@ public abstract class Expression /** * Coerces an integral value (BigInteger) to its corresponding signed * representation, if the target type of this expression is signed. - * @parm b The BigInteger to be coerced. + * @param b The BigInteger to be coerced. * @return the value of an integral type coerced to its corresponding * signed integral type, if the target type of this expression is * signed. diff --git a/src/share/classes/javax/rmi/PortableRemoteObject.java b/src/share/classes/javax/rmi/PortableRemoteObject.java index 432eb4a6fc8192b12fa12403ff2224d8f6fe576e..10c3b95200e2b9bddf5728efda26561066bcda4a 100644 --- a/src/share/classes/javax/rmi/PortableRemoteObject.java +++ b/src/share/classes/javax/rmi/PortableRemoteObject.java @@ -161,7 +161,7 @@ public class PortableRemoteObject { * happens implicitly when the object is sent or received as an argument * on a remote method call, but in some circumstances it is useful to * perform this action by making an explicit call. See the - * {@link Stub#connect} method for more information. + * {@link javax.rmi.CORBA.Stub#connect} method for more information. * @param target the object to connect. * @param source a previously connected object. * @throws RemoteException if source is not connected diff --git a/src/share/classes/org/omg/CORBA/SetOverrideType.java b/src/share/classes/org/omg/CORBA/SetOverrideType.java index acf946871ee470fa036fdd4e4bc5f9762e6977b6..a1e1acc595fb93e1dcd35e0bb1dc2baa1022d296 100644 --- a/src/share/classes/org/omg/CORBA/SetOverrideType.java +++ b/src/share/classes/org/omg/CORBA/SetOverrideType.java @@ -31,7 +31,7 @@ package org.omg.CORBA; * indicate whether policies should replace the * existing policies of an Object or be added to them. *

- * The method {@link omg.org.CORBA.Object._set_policy_override} takes + * The method {@link org.omg.CORBA.Object#_set_policy_override} takes * either SetOverrideType.SET_OVERRIDE or * SetOverrideType.ADD_OVERRIDE as its second argument. * The method _set_policy_override diff --git a/src/share/classes/org/omg/CORBA/TCKind.java b/src/share/classes/org/omg/CORBA/TCKind.java index bb3a748f26a2f394789977dd886a2330e1372e8d..8aa33032da7dbaecd813545ab5ba4a321ecb4fe2 100644 --- a/src/share/classes/org/omg/CORBA/TCKind.java +++ b/src/share/classes/org/omg/CORBA/TCKind.java @@ -545,8 +545,6 @@ public class TCKind { * @param _value the int to convert. It must be one of * the int constants in the class * TCKind. - * @return a new TCKind instance whose value - * field matches the given int */ @Deprecated protected TCKind(int _value){ diff --git a/src/share/classes/org/omg/CORBA/UnknownUserException.java b/src/share/classes/org/omg/CORBA/UnknownUserException.java index 8509b2d5146358967ce6140bc6093e921a65c881..c66bbc99f1d0e841af3016eb6049f1803f366c3e 100644 --- a/src/share/classes/org/omg/CORBA/UnknownUserException.java +++ b/src/share/classes/org/omg/CORBA/UnknownUserException.java @@ -56,7 +56,7 @@ public final class UnknownUserException extends UserException { * Constructs an UnknownUserException object that contains the given * Any object. * - * @ param a an Any object that contains a user exception returned + * @param a an Any object that contains a user exception returned * by the server */ public UnknownUserException(Any a) { diff --git a/src/share/classes/org/omg/CORBA/portable/ServantObject.java b/src/share/classes/org/omg/CORBA/portable/ServantObject.java index c2c04e11cab0c1baa42ab7a907d4d27880c37837..dd1ed8d0e265bfee163a86004d5596ebabeb54da 100644 --- a/src/share/classes/org/omg/CORBA/portable/ServantObject.java +++ b/src/share/classes/org/omg/CORBA/portable/ServantObject.java @@ -43,7 +43,6 @@ public class ServantObject /** The real servant. The local stub may cast this field to the expected type, and then * invoke the operation directly. Note, the object may or may not be the actual servant * instance. - * @return The real servant */ public java.lang.Object servant; } diff --git a/src/share/classes/org/omg/CosNaming/nameservice.idl b/src/share/classes/org/omg/CosNaming/nameservice.idl index 226454d0fbd1183b9b41df2a9ebd740f3fbc73f1..7543484b0ed1a0bdf1fb6db07f93f6b52e9088d9 100644 --- a/src/share/classes/org/omg/CosNaming/nameservice.idl +++ b/src/share/classes/org/omg/CosNaming/nameservice.idl @@ -256,7 +256,7 @@ module CosNaming * * @param n Name of the object

* - * @parm obj The Object to rebind with the given name

+ * @param obj The Object to rebind with the given name

* * @exception org.omg.CosNaming.NamingContextPackage.NotFound Indicates the name does not identify a binding.

* diff --git a/src/share/classes/org/omg/PortableInterceptor/Interceptors.idl b/src/share/classes/org/omg/PortableInterceptor/Interceptors.idl index ba94343d73d1e0d994a268870fdc127c8ac91b5b..8edefdf16ae75520c22ce7f6d13a8bb8226c226f 100644 --- a/src/share/classes/org/omg/PortableInterceptor/Interceptors.idl +++ b/src/share/classes/org/omg/PortableInterceptor/Interceptors.idl @@ -1730,7 +1730,7 @@ module PortableInterceptor { *

* Any number of components may exist with the same component ID. * - * @param a_component The IOP.TaggedComponent to add. + * @param tagged_component The IOP.TaggedComponent to add. */ void add_ior_component (in IOP::TaggedComponent tagged_component); @@ -1744,7 +1744,7 @@ module PortableInterceptor { *

* Any number of components may exist with the same component ID. * - * @param a_component The IOP.TaggedComponent to add. + * @param tagged_component The IOP.TaggedComponent to add. * @param profile_id The profile id of the profile to * which this component will be added. * @exception BAD_PARAM thrown, with a standard minor code of 29, if the