calculatorholder.java

来自「卡内基梅隆大学软件工程课件,很全面」· Java 代码 · 共 39 行

JAVA
39
字号
package calc;

/**
* calc/calculatorHolder.java .
* Generated by the IDL-to-Java compiler (portable), version "3.1"
* from calculator.idl
* 2005年6月15日 星期三 上午09时56分48秒 CST
*/

public final class calculatorHolder implements org.omg.CORBA.portable.Streamable
{
  public calc.calculator value = null;

  public calculatorHolder ()
  {
  }

  public calculatorHolder (calc.calculator initialValue)
  {
    value = initialValue;
  }

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

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

  public org.omg.CORBA.TypeCode _type ()
  {
    return calc.calculatorHelper.type ();
  }

}

⌨️ 快捷键说明

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