⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dynamicstub.java

📁 java1.6众多例子参考
💻 JAVA
字号:
/* * @(#)DynamicStub.java	1.6 05/11/17 * * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */package com.sun.corba.se.spi.presentation.rmi ;import java.rmi.RemoteException ;import org.omg.CORBA.portable.Delegate ;import org.omg.CORBA.portable.OutputStream ;import org.omg.CORBA.ORB ;/** Interface used to support dynamically generated stubs. * This supplies some methods that are found in  * org.omg.CORBA.portable.ObjectImpl that are not available * in org.omg.CORBA.Object. */public interface DynamicStub extends org.omg.CORBA.Object{    /** Similar to ObjectImpl._set_delegate     */    void setDelegate( Delegate delegate ) ;    /** Similar to ObjectImpl._get_delegate     */    Delegate getDelegate() ;    /** Similar to ObjectImpl._orb()     */    ORB getORB() ;    /** Similar to ObjectImpl._ids     */    String[] getTypeIds() ;     /** Connect this dynamic stub to an ORB.     * Just as in standard RMI-IIOP, this is required after     * a dynamic stub is deserialized from an ObjectInputStream.     * It is not needed when unmarshalling from a      * org.omg.CORBA.portable.InputStream.     */    void connect( ORB orb ) throws RemoteException ;    boolean isLocal() ;    OutputStream request( String operation, boolean responseExpected ) ;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -