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

📄 managekeypoatie.java

📁 corba是一款商用内存检测工具
💻 JAVA
字号:

/**
 * <ul>
 * <li> <b>IDL Source</b>    "ManageKey.idl"
 * <li> <b>IDL Name</b>      ::ManageKey
 * <li> <b>Repository Id</b> IDL:ManageKey:1.0
 * </ul>
 * <b>IDL definition:</b>
 * <pre>
 * interface ManageKey {
  ...
};
 * </pre>
 */
public class ManageKeyPOATie extends ManageKeyPOA {
  private ManageKeyOperations _delegate;
  private org.omg.PortableServer.POA _poa;

  public ManageKeyPOATie (final ManageKeyOperations _delegate) {
    this._delegate = _delegate;
  }

  public ManageKeyPOATie (final ManageKeyOperations _delegate, 
                              final org.omg.PortableServer.POA _poa) {
    this._delegate = _delegate;
    this._poa = _poa;
  }

  public ManageKeyOperations _delegate () {
    return this._delegate;
  }

  public void _delegate (final ManageKeyOperations the_delegate) {
    this._delegate = the_delegate;
  }

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

  /**
   * <pre>
   *   long long Disconnect ();
   * </pre>
   */
  public long Disconnect () {
    return this._delegate.Disconnect();
  }

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

  /**
   * <pre>
   *   long long SetKey (in string KeyValue);
   * </pre>
   */
  public long SetKey (java.lang.String KeyValue) {
    return this._delegate.SetKey(KeyValue);
  }

  /**
   * <pre>
   *   long long Connect (in string UserName);
   * </pre>
   */
  public long Connect (java.lang.String UserName) {
    return this._delegate.Connect(UserName);
  }

}

⌨️ 快捷键说明

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