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

📄 _st_xmlreceiver.java

📁 使用方法: 实例程序的运行: 每个实例下都有本实例的.xml文件或.html文件或.xsl文件
💻 JAVA
字号:
package org.xbeans.communication.corba;
/**
<p>
<ul>
<li> <b>Java Class</b> org.xbeans.communication.corba._st_XMLReceiver
<li> <b>Source File</b> org/xbeans/communication/corba/_st_XMLReceiver.java
<li> <b>IDL Source File</b> D://Documents//MageLang//Xbean//source//XMLReceiver.idl
<li> <b>IDL Absolute Name</b> ::org::xbeans::communication::corba::XMLReceiver
<li> <b>Repository Identifier</b> IDL:org/xbeans/communication/corba/XMLReceiver:1.0
</ul>
<b>IDL definition:</b>
<pre>
    #pragma prefix "org/xbeans/communication/corba"
    interface XMLReceiver {
      void documentReady(
        in ::org::xbeans::communication::corba::byteArray serializedDocument
      )
      raises(
        ::org::xbeans::communication::corba::RemoteReceiverException
      );
    };
</pre>
</p>
*/
public class _st_XMLReceiver extends com.inprise.vbroker.CORBA.portable.ObjectImpl implements org.xbeans.communication.corba.XMLReceiver {
  protected org.xbeans.communication.corba.XMLReceiver _wrapper = null;
  public org.xbeans.communication.corba.XMLReceiver _this() {
    return this;
  }
  public java.lang.String[] _ids() {
    return __ids;
  }
  private static java.lang.String[] __ids = {
    "IDL:org/xbeans/communication/corba/XMLReceiver:1.0"
  };
  /**
  <p>
  Operation: <b>::org::xbeans::communication::corba::XMLReceiver::documentReady</b>.
  <pre>
    #pragma prefix "org/xbeans/communication/corba/XMLReceiver"
    void documentReady(
      in ::org::xbeans::communication::corba::byteArray serializedDocument
    )
    raises(
      ::org::xbeans::communication::corba::RemoteReceiverException
    );
  </pre>
  </p>
  */
  public void documentReady(
    byte[] serializedDocument
  ) throws
    org.xbeans.communication.corba.RemoteReceiverException {
    org.omg.CORBA.portable.OutputStream _output;
    org.omg.CORBA.portable.InputStream _input;
    while(true) {
      _output = this._request("documentReady", true);
      org.xbeans.communication.corba.byteArrayHelper.write(_output, serializedDocument);
      org.omg.CORBA.StringHolder _exception_id = new org.omg.CORBA.StringHolder();
      try {
        _input = this._invoke(_output, _exception_id);
        if(_exception_id.value != null) {
          if(_exception_id.value.equals(org.xbeans.communication.corba.RemoteReceiverExceptionHelper.id())) {
            throw org.xbeans.communication.corba.RemoteReceiverExceptionHelper.read(_input);
          }
          throw new org.omg.CORBA.MARSHAL
            ("Unexpected User Exception: " + _exception_id.value);
        }
      }
      catch(org.omg.CORBA.TRANSIENT _exception) {
        continue;
      }
      break;
    }
  }
}

⌨️ 快捷键说明

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