xmlreceiverholder.java
来自「使用方法: 实例程序的运行: 每个实例下都有本实例的.xml文件或.htm」· Java 代码 · 共 42 行
JAVA
42 行
package org.xbeans.communication.corba;
/**
<p>
<ul>
<li> <b>Java Class</b> org.xbeans.communication.corba.XMLReceiverHolder
<li> <b>Source File</b> org/xbeans/communication/corba/XMLReceiverHolder.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>
*/
final public class XMLReceiverHolder implements org.omg.CORBA.portable.Streamable {
public org.xbeans.communication.corba.XMLReceiver value;
public XMLReceiverHolder() {
}
public XMLReceiverHolder(org.xbeans.communication.corba.XMLReceiver value) {
this.value = value;
}
public void _read(org.omg.CORBA.portable.InputStream input) {
value = org.xbeans.communication.corba.XMLReceiverHelper.read(input);
}
public void _write(org.omg.CORBA.portable.OutputStream output) {
org.xbeans.communication.corba.XMLReceiverHelper.write(output, value);
}
public org.omg.CORBA.TypeCode _type() {
return org.xbeans.communication.corba.XMLReceiverHelper.type();
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?