📄 helloholder.java
字号:
/*
* File: ./HELLOAPP/HELLOHOLDER.JAVA
* From: HELLO.IDL
* Date: Tue Apr 18 12:03:21 2000
* By: idltojava Java IDL 1.2 Aug 18 1998 16:25:34
*/
package HelloApp;
public final class HelloHolder
implements org.omg.CORBA.portable.Streamable{
// instance variable
public HelloApp.Hello value;
// constructors
public HelloHolder() {
this(null);
}
public HelloHolder(HelloApp.Hello __arg) {
value = __arg;
}
public void _write(org.omg.CORBA.portable.OutputStream out) {
HelloApp.HelloHelper.write(out, value);
}
public void _read(org.omg.CORBA.portable.InputStream in) {
value = HelloApp.HelloHelper.read(in);
}
public org.omg.CORBA.TypeCode _type() {
return HelloApp.HelloHelper.type();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -