connectiondescription.java
来自「直接放在eclipse环境下」· Java 代码 · 共 35 行
JAVA
35 行
package org.omg.Components;
/**
* Generated from IDL definition of valuetype "ConnectionDescription"
* @author JacORB IDL compiler
*/
public abstract class ConnectionDescription
implements org.omg.CORBA.portable.StreamableValue
{
private String[] _truncatable_ids = {"IDL:omg.org/Components/ConnectionDescription:1.0"};
public org.omg.Components.Cookie ck;
public org.omg.CORBA.Object objref;
public void _write (org.omg.CORBA.portable.OutputStream os)
{
((org.omg.CORBA_2_3.portable.OutputStream)os).write_value (ck );
os.write_Object(objref);
}
public void _read (final org.omg.CORBA.portable.InputStream os)
{
ck=(org.omg.Components.Cookie)((org.omg.CORBA_2_3.portable.InputStream)os).read_value ("IDL:omg.org/Components/Cookie:1.0");
objref=os.read_Object();
}
public String[] _truncatable_ids()
{
return _truncatable_ids;
}
public org.omg.CORBA.TypeCode _type()
{
return org.omg.Components.ConnectionDescriptionHelper.type();
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?