📄 countholder.java
字号:
package Counter;
/**
* Counter/CountHolder.java .
* Generated by the IDL-to-Java compiler (portable), version "3.1"
* from Count.idl
* 2005年6月13日 星期一 下午03时18分36秒 CST
*/
public final class CountHolder implements org.omg.CORBA.portable.Streamable
{
public Counter.Count value = null;
public CountHolder ()
{
}
public CountHolder (Counter.Count initialValue)
{
value = initialValue;
}
public void _read (org.omg.CORBA.portable.InputStream i)
{
value = Counter.CountHelper.read (i);
}
public void _write (org.omg.CORBA.portable.OutputStream o)
{
Counter.CountHelper.write (o, value);
}
public org.omg.CORBA.TypeCode _type ()
{
return Counter.CountHelper.type ();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -