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