structmapholder.java

来自「高级java2 大学教程(含源码,经典的Java学习教程」· Java 代码 · 共 41 行

JAVA
41
字号
package maptest;

/**
* maptest/StructMapHolder.java
* Generated by the IDL-to-Java compiler (portable), version "3.0"
* from maptest.idl
* Monday, May 14, 2001 4:18:09 PM PDT
*/


// This comment appears in the generated files for StructMap
public final class StructMapHolder implements org.omg.CORBA.portable.Streamable
{
  public maptest.StructMap value = null;

  public StructMapHolder ()
  {
  }

  public StructMapHolder (maptest.StructMap initialValue)
  {
    value = initialValue;
  }

  public void _read (org.omg.CORBA.portable.InputStream i)
  {
    value = maptest.StructMapHelper.read (i);
  }

  public void _write (org.omg.CORBA.portable.OutputStream o)
  {
    maptest.StructMapHelper.write (o, value);
  }

  public org.omg.CORBA.TypeCode _type ()
  {
    return maptest.StructMapHelper.type ();
  }

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?