< prev index next >

src/java.corba/share/classes/com/sun/corba/se/impl/orb/ORBImpl.java

Print this page

        

@@ -583,11 +583,11 @@
 
     /**
      * Create an NVList
      *
      * @param count     size of list to create
-     * @result          NVList created
+     * @return          NVList created
      *
      * @see NVList
      */
     public synchronized NVList create_list(int count)
     {

@@ -597,11 +597,11 @@
 
     /**
      * Create an NVList corresponding to an OperationDef
      *
      * @param oper      operation def to use to create list
-     * @result          NVList created
+     * @return          NVList created
      *
      * @see NVList
      */
     public synchronized NVList create_operation_list(org.omg.CORBA.Object oper)
     {

@@ -610,55 +610,55 @@
     }
 
     /**
      * Create a NamedValue
      *
-     * @result          NamedValue created
+     * @return          NamedValue created
      */
     public synchronized NamedValue create_named_value(String s, Any any, int flags)
     {
         checkShutdownState();
         return new NamedValueImpl(this, s, any, flags);
     }
 
     /**
      * Create an ExceptionList
      *
-     * @result          ExceptionList created
+     * @return          ExceptionList created
      */
     public synchronized org.omg.CORBA.ExceptionList create_exception_list()
     {
         checkShutdownState();
         return new ExceptionListImpl();
     }
 
     /**
      * Create a ContextList
      *
-     * @result          ContextList created
+     * @return          ContextList created
      */
     public synchronized org.omg.CORBA.ContextList create_context_list()
     {
         checkShutdownState();
         return new ContextListImpl(this);
     }
 
     /**
      * Get the default Context object
      *
-     * @result          the default Context object
+     * @return          the default Context object
      */
     public synchronized org.omg.CORBA.Context get_default_context()
     {
         checkShutdownState();
         throw wrapper.genericNoImpl() ;
     }
 
     /**
      * Create an Environment
      *
-     * @result          Environment created
+     * @return          Environment created
      */
     public synchronized org.omg.CORBA.Environment create_environment()
     {
         checkShutdownState();
         return new EnvironmentImpl();

@@ -717,11 +717,11 @@
     }
 
     /**
      * Get the next request that has gotten a response.
      *
-     * @result            the next request ready with a response.
+     * @return            the next request ready with a response.
      */
     public org.omg.CORBA.Request get_next_response()
         throws org.omg.CORBA.WrongTransaction
     {
         synchronized( this ) {
< prev index next >