📄 textevent.java
字号:
package org.objectweb.ccm.demo3;
/**
* Generated from IDL definition of valuetype "TextEvent"
* @author JacORB IDL compiler
*/
public abstract class TextEvent
implements org.omg.CORBA.portable.StreamableValue, org.omg.Components.EventBase
{
private String[] _truncatable_ids = {"IDL:ccm.objectweb.org/demo3/TextEvent:1.0"};
public java.lang.String text = "";
public void _write (org.omg.CORBA.portable.OutputStream os)
{
os.write_string(text);
}
public void _read (final org.omg.CORBA.portable.InputStream os)
{
text=os.read_string();
}
public String[] _truncatable_ids()
{
return _truncatable_ids;
}
public org.omg.CORBA.TypeCode _type()
{
return org.objectweb.ccm.demo3.TextEventHelper.type();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -