ChatServiceHolder.java
上传用户:annion2008
上传日期:2021-03-11
资源大小:38k
文件大小:1k
源码类别:

中间件编程

开发平台:

Java

  1. package chat.servidor;
  2. /**
  3. * chat/servidor/ChatServiceHolder.java .
  4. * 由 IDL-to-Java 编译器(可移植),版本 "3.2" 生成
  5. * 来自 ChatServide.idl
  6. * 2010年4月12日 星期一 下午06时04分51秒 CST
  7. */
  8. public final class ChatServiceHolder implements org.omg.CORBA.portable.Streamable
  9. {
  10.   public chat.servidor.ChatService value = null;
  11.   public ChatServiceHolder ()
  12.   {
  13.   }
  14.   public ChatServiceHolder (chat.servidor.ChatService initialValue)
  15.   {
  16.     value = initialValue;
  17.   }
  18.   public void _read (org.omg.CORBA.portable.InputStream i)
  19.   {
  20.     value = chat.servidor.ChatServiceHelper.read (i);
  21.   }
  22.   public void _write (org.omg.CORBA.portable.OutputStream o)
  23.   {
  24.     chat.servidor.ChatServiceHelper.write (o, value);
  25.   }
  26.   public org.omg.CORBA.TypeCode _type ()
  27.   {
  28.     return chat.servidor.ChatServiceHelper.type ();
  29.   }
  30. }