📄 receptacledescription.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -