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

📄 remotereceiverexceptionhelper.java

📁 使用方法: 实例程序的运行: 每个实例下都有本实例的.xml文件或.html文件或.xsl文件
💻 JAVA
字号:
package org.xbeans.communication.corba;
/**
<p>
<ul>
<li> <b>Java Class</b> org.xbeans.communication.corba.RemoteReceiverExceptionHelper
<li> <b>Source File</b> org/xbeans/communication/corba/RemoteReceiverExceptionHelper.java
<li> <b>IDL Source File</b> D://Documents//MageLang//Xbean//source//XMLReceiver.idl
<li> <b>IDL Absolute Name</b> ::org::xbeans::communication::corba::RemoteReceiverException
<li> <b>Repository Identifier</b> IDL:org/xbeans/communication/corba/RemoteReceiverException:1.0
</ul>
<b>IDL definition:</b>
<pre>
    #pragma prefix "org/xbeans/communication/corba"
    exception RemoteReceiverException {
      string remoteIdentifier;
      string documentName;
      string componentName;
      string message;
      string moreMessage;
    };
</pre>
</p>
*/
abstract public class RemoteReceiverExceptionHelper {
  private static org.omg.CORBA.ORB _orb() {
    return org.omg.CORBA.ORB.init();
  }
  public static org.xbeans.communication.corba.RemoteReceiverException read(org.omg.CORBA.portable.InputStream _input) {
    if(!_input.read_string().equals(id())) {
      throw new org.omg.CORBA.MARSHAL("Mismached repository id");
    }
    org.xbeans.communication.corba.RemoteReceiverException result = new org.xbeans.communication.corba.RemoteReceiverException();
    result.remoteIdentifier = _input.read_string();
    result.documentName = _input.read_string();
    result.componentName = _input.read_string();
    result.message = _input.read_string();
    result.moreMessage = _input.read_string();
    return result;
  }
  public static void write(org.omg.CORBA.portable.OutputStream _output, org.xbeans.communication.corba.RemoteReceiverException value) {
    _output.write_string(id());
    _output.write_string(value.remoteIdentifier);
    _output.write_string(value.documentName);
    _output.write_string(value.componentName);
    _output.write_string(value.message);
    _output.write_string(value.moreMessage);
  }
  public static void insert(org.omg.CORBA.Any any, org.xbeans.communication.corba.RemoteReceiverException value) {
    org.omg.CORBA.portable.OutputStream output = any.create_output_stream();
    write(output, value);
    any.read_value(output.create_input_stream(), type());
  }
  public static org.xbeans.communication.corba.RemoteReceiverException extract(org.omg.CORBA.Any any) {
    if(!any.type().equal(type())) {
      throw new org.omg.CORBA.BAD_TYPECODE();
    }
    return read(any.create_input_stream());
  }
  private static org.omg.CORBA.TypeCode _type;
  public static org.omg.CORBA.TypeCode type() {
    if(_type == null) {
      org.omg.CORBA.StructMember[] members = new org.omg.CORBA.StructMember[5];
      members[0] = new org.omg.CORBA.StructMember("remoteIdentifier", _orb().get_primitive_tc(org.omg.CORBA.TCKind.tk_string), null);
      members[1] = new org.omg.CORBA.StructMember("documentName", _orb().get_primitive_tc(org.omg.CORBA.TCKind.tk_string), null);
      members[2] = new org.omg.CORBA.StructMember("componentName", _orb().get_primitive_tc(org.omg.CORBA.TCKind.tk_string), null);
      members[3] = new org.omg.CORBA.StructMember("message", _orb().get_primitive_tc(org.omg.CORBA.TCKind.tk_string), null);
      members[4] = new org.omg.CORBA.StructMember("moreMessage", _orb().get_primitive_tc(org.omg.CORBA.TCKind.tk_string), null);
      _type = (_orb()).create_exception_tc(id(), "RemoteReceiverException", members);
    }
    return _type;
  }
  public static java.lang.String id() {
    return "IDL:org/xbeans/communication/corba/RemoteReceiverException:1.0";
  }
}

⌨️ 快捷键说明

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