< prev index next >

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

Print this page

        

*** 583,593 **** /** * Create an NVList * * @param count size of list to create ! * @result NVList created * * @see NVList */ public synchronized NVList create_list(int count) { --- 583,593 ---- /** * Create an NVList * * @param count size of list to create ! * @return {@code NVList} created * * @see NVList */ public synchronized NVList create_list(int count) {
*** 597,607 **** /** * Create an NVList corresponding to an OperationDef * * @param oper operation def to use to create list ! * @result NVList created * * @see NVList */ public synchronized NVList create_operation_list(org.omg.CORBA.Object oper) { --- 597,607 ---- /** * Create an NVList corresponding to an OperationDef * * @param oper operation def to use to create list ! * @return {@code NVList} created * * @see NVList */ public synchronized NVList create_operation_list(org.omg.CORBA.Object oper) {
*** 610,664 **** } /** * Create a NamedValue * ! * @result 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 */ public synchronized org.omg.CORBA.ExceptionList create_exception_list() { checkShutdownState(); return new ExceptionListImpl(); } /** * Create a ContextList * ! * @result 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 */ public synchronized org.omg.CORBA.Context get_default_context() { checkShutdownState(); throw wrapper.genericNoImpl() ; } /** * Create an Environment * ! * @result Environment created */ public synchronized org.omg.CORBA.Environment create_environment() { checkShutdownState(); return new EnvironmentImpl(); --- 610,664 ---- } /** * Create a NamedValue * ! * @return {@code 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 * ! * @return {@code ExceptionList} created */ public synchronized org.omg.CORBA.ExceptionList create_exception_list() { checkShutdownState(); return new ExceptionListImpl(); } /** * Create a ContextList * ! * @return {@code ContextList} created */ public synchronized org.omg.CORBA.ContextList create_context_list() { checkShutdownState(); return new ContextListImpl(this); } /** * Get the default Context object * ! * @return {@code the default Context object} */ public synchronized org.omg.CORBA.Context get_default_context() { checkShutdownState(); throw wrapper.genericNoImpl() ; } /** * Create an Environment * ! * @return {@code Environment} created */ public synchronized org.omg.CORBA.Environment create_environment() { checkShutdownState(); return new EnvironmentImpl();
*** 717,727 **** } /** * Get the next request that has gotten a response. * ! * @result the next request ready with a response. */ public org.omg.CORBA.Request get_next_response() throws org.omg.CORBA.WrongTransaction { synchronized( this ) { --- 717,727 ---- } /** * Get the next request that has gotten 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 >