📄 bean_stub.java
字号:
// Stub class generated by rmic, do not edit.
// Contents subject to change without notice.
package org.xbeans.communication.rmi.receiver;
public final class Bean_Stub
extends java.rmi.server.RemoteStub
implements org.xbeans.communication.rmi.DOMListener, java.rmi.Remote
{
private static final java.rmi.server.Operation[] operations = {
new java.rmi.server.Operation("void documentReady(org.w3c.dom.Document)")
};
private static final long interfaceHash = -7753831442145151759L;
private static final long serialVersionUID = 2;
private static boolean useNewInvoke;
private static java.lang.reflect.Method $method_documentReady_0;
static {
try {
java.rmi.server.RemoteRef.class.getMethod("invoke",
new java.lang.Class[] {
java.rmi.Remote.class,
java.lang.reflect.Method.class,
java.lang.Object[].class,
long.class
});
useNewInvoke = true;
$method_documentReady_0 = org.xbeans.communication.rmi.DOMListener.class.getMethod("documentReady", new java.lang.Class[] {org.w3c.dom.Document.class});
} catch (java.lang.NoSuchMethodException e) {
useNewInvoke = false;
}
}
// constructors
public Bean_Stub() {
super();
}
public Bean_Stub(java.rmi.server.RemoteRef ref) {
super(ref);
}
// methods from remote interfaces
// implementation of documentReady(Document)
public void documentReady(org.w3c.dom.Document $param_Document_1)
throws java.rmi.RemoteException, org.xbeans.XbeansException
{
try {
if (useNewInvoke) {
ref.invoke(this, $method_documentReady_0, new java.lang.Object[] {$param_Document_1}, 1454691853392125866L);
} else {
java.rmi.server.RemoteCall call = ref.newCall((java.rmi.server.RemoteObject) this, operations, 0, interfaceHash);
try {
java.io.ObjectOutput out = call.getOutputStream();
out.writeObject($param_Document_1);
} catch (java.io.IOException e) {
throw new java.rmi.MarshalException("error marshalling arguments", e);
}
ref.invoke(call);
ref.done(call);
}
} catch (java.lang.RuntimeException e) {
throw e;
} catch (java.rmi.RemoteException e) {
throw e;
} catch (java.lang.Exception e) {
throw new java.rmi.UnexpectedException("undeclared checked exception", e);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -