📄 exacttimeholder.java
字号:
/*
* File: ./REMOTETIME/EXACTTIMEHOLDER.JAVA
* From: .\C15\CORBA\EXACTTIME.IDL
* Date: Wed Jun 13 14:04:30 2001
* By: C:\PROGTO~1\JAVA\BIN\IDLTOJ~1.EXE Java IDL 1.2 Aug 18 1998 16:25:34
*/
package remotetime;
public final class ExactTimeHolder
implements org.omg.CORBA.portable.Streamable{
// instance variable
public remotetime.ExactTime value;
// constructors
public ExactTimeHolder() {
this(null);
}
public ExactTimeHolder(remotetime.ExactTime __arg) {
value = __arg;
}
public void _write(org.omg.CORBA.portable.OutputStream out) {
remotetime.ExactTimeHelper.write(out, value);
}
public void _read(org.omg.CORBA.portable.InputStream in) {
value = remotetime.ExactTimeHelper.read(in);
}
public org.omg.CORBA.TypeCode _type() {
return remotetime.ExactTimeHelper.type();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -