提交 507f7762 编写于 作者: M mikejwre

Merge

...@@ -123,7 +123,7 @@ public abstract class Expression ...@@ -123,7 +123,7 @@ public abstract class Expression
/** /**
* Coerces a number to the target type of this 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 * @return the value of number coerced to the (target) type of
* this expression. * this expression.
**/ **/
...@@ -142,7 +142,7 @@ public abstract class Expression ...@@ -142,7 +142,7 @@ public abstract class Expression
/** /**
* Coerces an integral value (BigInteger) to its corresponding unsigned * Coerces an integral value (BigInteger) to its corresponding unsigned
* representation, if the target type of this expression is 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 * @return the value of an integral type coerced to its corresponding
* unsigned integral type, if the target type of this expression is * unsigned integral type, if the target type of this expression is
* unsigned. * unsigned.
...@@ -170,7 +170,7 @@ public abstract class Expression ...@@ -170,7 +170,7 @@ public abstract class Expression
/** /**
* Coerces an integral value (BigInteger) to its corresponding signed * Coerces an integral value (BigInteger) to its corresponding signed
* representation, if the target type of this expression is 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 * @return the value of an integral type coerced to its corresponding
* signed integral type, if the target type of this expression is * signed integral type, if the target type of this expression is
* signed. * signed.
......
...@@ -161,7 +161,7 @@ public class PortableRemoteObject { ...@@ -161,7 +161,7 @@ public class PortableRemoteObject {
* happens implicitly when the object is sent or received as an argument * 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 * on a remote method call, but in some circumstances it is useful to
* perform this action by making an explicit call. See the * 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 target the object to connect.
* @param source a previously connected object. * @param source a previously connected object.
* @throws RemoteException if <code>source</code> is not connected * @throws RemoteException if <code>source</code> is not connected
......
...@@ -31,7 +31,7 @@ package org.omg.CORBA; ...@@ -31,7 +31,7 @@ package org.omg.CORBA;
* indicate whether policies should replace the * indicate whether policies should replace the
* existing policies of an <code>Object</code> or be added to them. * existing policies of an <code>Object</code> or be added to them.
* <P> * <P>
* The method {@link omg.org.CORBA.Object._set_policy_override} takes * The method {@link org.omg.CORBA.Object#_set_policy_override} takes
* either <code>SetOverrideType.SET_OVERRIDE</code> or * either <code>SetOverrideType.SET_OVERRIDE</code> or
* <code>SetOverrideType.ADD_OVERRIDE</code> as its second argument. * <code>SetOverrideType.ADD_OVERRIDE</code> as its second argument.
* The method <code>_set_policy_override</code> * The method <code>_set_policy_override</code>
......
...@@ -545,8 +545,6 @@ public class TCKind { ...@@ -545,8 +545,6 @@ public class TCKind {
* @param _value the <code>int</code> to convert. It must be one of * @param _value the <code>int</code> to convert. It must be one of
* the <code>int</code> constants in the class * the <code>int</code> constants in the class
* <code>TCKind</code>. * <code>TCKind</code>.
* @return a new <code>TCKind</code> instance whose <code>value</code>
* field matches the given <code>int</code>
*/ */
@Deprecated @Deprecated
protected TCKind(int _value){ protected TCKind(int _value){
......
...@@ -56,7 +56,7 @@ public final class UnknownUserException extends UserException { ...@@ -56,7 +56,7 @@ public final class UnknownUserException extends UserException {
* Constructs an <code>UnknownUserException</code> object that contains the given * Constructs an <code>UnknownUserException</code> object that contains the given
* <code>Any</code> object. * <code>Any</code> object.
* *
* @ param a an <code>Any</code> object that contains a user exception returned * @param a an <code>Any</code> object that contains a user exception returned
* by the server * by the server
*/ */
public UnknownUserException(Any a) { public UnknownUserException(Any a) {
......
...@@ -43,7 +43,6 @@ public class ServantObject ...@@ -43,7 +43,6 @@ public class ServantObject
/** The real servant. The local stub may cast this field to the expected type, and then /** 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 * invoke the operation directly. Note, the object may or may not be the actual servant
* instance. * instance.
* @return The real servant
*/ */
public java.lang.Object servant; public java.lang.Object servant;
} }
...@@ -256,7 +256,7 @@ module CosNaming ...@@ -256,7 +256,7 @@ module CosNaming
* *
* @param n Name of the object <p> * @param n Name of the object <p>
* *
* @parm obj The Object to rebind with the given name <p> * @param obj The Object to rebind with the given name <p>
* *
* @exception org.omg.CosNaming.NamingContextPackage.NotFound Indicates the name does not identify a binding.<p> * @exception org.omg.CosNaming.NamingContextPackage.NotFound Indicates the name does not identify a binding.<p>
* *
......
...@@ -1730,7 +1730,7 @@ module PortableInterceptor { ...@@ -1730,7 +1730,7 @@ module PortableInterceptor {
* <p> * <p>
* Any number of components may exist with the same component ID. * 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 void add_ior_component
(in IOP::TaggedComponent tagged_component); (in IOP::TaggedComponent tagged_component);
...@@ -1744,7 +1744,7 @@ module PortableInterceptor { ...@@ -1744,7 +1744,7 @@ module PortableInterceptor {
* <p> * <p>
* Any number of components may exist with the same component ID. * Any number of components may exist with the same component ID.
* *
* @param a_component The <code>IOP.TaggedComponent</code> to add. * @param tagged_component The <code>IOP.TaggedComponent</code> to add.
* @param profile_id The profile id of the profile to * @param profile_id The profile id of the profile to
* which this component will be added. * which this component will be added.
* @exception BAD_PARAM thrown, with a standard minor code of 29, if the * @exception BAD_PARAM thrown, with a standard minor code of 29, if the
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册