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

📄 hellopoatie.java

📁 CORBA实例
💻 JAVA
字号:

package corba.cn;

/**
 * <ul>
 * <li> <b>IDL Source</b>    "J:/java/corba/src/corba/hello.idl"
 * <li> <b>IDL Name</b>      ::cn::Hello
 * <li> <b>Repository Id</b> IDL:cn/Hello:1.0
 * </ul>
 * <b>IDL definition:</b>
 * <pre>
 * interface Hello {
  ...
};
 * </pre>
 */
public class HelloPOATie extends HelloPOA {
  private corba.cn.HelloOperations _delegate;
  private org.omg.PortableServer.POA _poa;

  public HelloPOATie (final corba.cn.HelloOperations _delegate) {
    this._delegate = _delegate;
  }

  public HelloPOATie (final corba.cn.HelloOperations _delegate, 
                              final org.omg.PortableServer.POA _poa) {
    this._delegate = _delegate;
    this._poa = _poa;
  }

  public corba.cn.HelloOperations _delegate () {
    return this._delegate;
  }

  public void _delegate (final corba.cn.HelloOperations the_delegate) {
    this._delegate = the_delegate;
  }

  public org.omg.PortableServer.POA _default_POA () {
    if (_poa != null) {
      return _poa;
    } 
    else {
      return super._default_POA();
    }
  }

  /**
   * <pre>
   *   string say ();
   * </pre>
   */
  public java.lang.String say () {
    return this._delegate.say();
  }

}

⌨️ 快捷键说明

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