structmapseqholder.java
来自「java2高级教程大学教程的配套光盘源码」· Java 代码 · 共 40 行
JAVA
40 行
package maptest;
/**
* maptest/StructMapSeqHolder.java
* Generated by the IDL-to-Java compiler (portable), version "3.0"
* from maptest.idl
* Monday, May 14, 2001 4:18:09 PM PDT
*/
public final class StructMapSeqHolder implements org.omg.CORBA.portable.Streamable
{
public maptest.StructMap value[] = null;
public StructMapSeqHolder ()
{
}
public StructMapSeqHolder (maptest.StructMap[] initialValue)
{
value = initialValue;
}
public void _read (org.omg.CORBA.portable.InputStream i)
{
value = maptest.StructMapSeqHelper.read (i);
}
public void _write (org.omg.CORBA.portable.OutputStream o)
{
maptest.StructMapSeqHelper.write (o, value);
}
public org.omg.CORBA.TypeCode _type ()
{
return maptest.StructMapSeqHelper.type ();
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?