receptacledescription.java
来自「直接放在eclipse环境下」· Java 代码 · 共 38 行
JAVA
38 行
package org.omg.Components;
/**
* Generated from IDL definition of valuetype "ReceptacleDescription"
* @author JacORB IDL compiler
*/
public abstract class ReceptacleDescription
extends org.omg.Components.PortDescription
implements org.omg.CORBA.portable.StreamableValue
{
private String[] _truncatable_ids = {"IDL:omg.org/Components/ReceptacleDescription:1.0"};
public boolean is_multiple;
public org.omg.Components.ConnectionDescription[] connections;
public void _write (org.omg.CORBA.portable.OutputStream os)
{
super._write( os );
os.write_boolean(is_multiple);
org.omg.Components.ConnectionDescriptionsHelper.write(os,connections);
}
public void _read (final org.omg.CORBA.portable.InputStream os)
{
super._read( os );
is_multiple=os.read_boolean();
connections = org.omg.Components.ConnectionDescriptionsHelper.read(os);
}
public String[] _truncatable_ids()
{
return _truncatable_ids;
}
public org.omg.CORBA.TypeCode _type()
{
return org.omg.Components.ReceptacleDescriptionHelper.type();
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?