⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 helloserviceholder.java

📁 《java网络编程精解》的源代码
💻 JAVA
字号:
package hello;

/**
* hello/HelloServiceHolder.java .
* 由 IDL-to-Java 编译器(可移植),版本 "3.2" 生成
* 来自 HelloService.idl
* 2006年12月18日 星期一 下午09时14分13秒 CST
*/

public final class HelloServiceHolder implements org.omg.CORBA.portable.Streamable
{
  public hello.HelloService value = null;

  public HelloServiceHolder ()
  {
  }

  public HelloServiceHolder (hello.HelloService initialValue)
  {
    value = initialValue;
  }

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

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

  public org.omg.CORBA.TypeCode _type ()
  {
    return hello.HelloServiceHelper.type ();
  }

}


/****************************************************
 * 作者:孙卫琴                                     *
 * 来源:<<Java网络编程精解>>                       *
 * 技术支持网址:www.javathinker.org                *
 ***************************************************/

⌨️ 快捷键说明

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