Source of ExactTimeHolder.java


  1: /*
  2:  * File: ./REMOTETIME/EXACTTIMEHOLDER.JAVA
  3:  * From: .\C15\CORBA\EXACTTIME.IDL
  4:  * Date: Wed Jun 13 14:04:30 2001
  5:  *   By: C:\PROGTO~1\JAVA\BIN\IDLTOJ~1.EXE Java IDL 1.2 Aug 18 1998 16:25:34
  6:  */

  8: package remotetime;
  9: public final class ExactTimeHolder
 10:      implements org.omg.CORBA.portable.Streamable{
 11:     //        instance variable 
 12:     public remotetime.ExactTime value;
 13:     //        constructors 
 14:     public ExactTimeHolder() {
 15:         this(null);
 16:     }
 17:     public ExactTimeHolder(remotetime.ExactTime __arg) {
 18:         value = __arg;
 19:     }

 21:     public void _write(org.omg.CORBA.portable.OutputStream out) {
 22:         remotetime.ExactTimeHelper.write(out, value);
 23:     }

 25:     public void _read(org.omg.CORBA.portable.InputStream in) {
 26:         value = remotetime.ExactTimeHelper.read(in);
 27:     }

 29:     public org.omg.CORBA.TypeCode _type() {
 30:         return remotetime.ExactTimeHelper.type();
 31:     }
 32: }