1 package CosTime;
2
3 /**
* CosTime/TimeServiceHolder.java .
* Generated by the IDL-to-Java compiler (portable), version "3.1"
* from time.idl
* Freitag, 18. April 2003 11.06 Uhr CEST
*/
4
5 public final class TimeServiceHolder implements org.omg.CORBA.portable.Streamable
6 {
7 public CosTime.TimeService value = null;
8
9 public TimeServiceHolder ()
10 {
11 }
12
13 public TimeServiceHolder (CosTime.TimeService initialValue)
14 {
15 value = initialValue;
16 }
17
18 public void _read (org.omg.CORBA.portable.InputStream i)
19 {
20 value = CosTime.TimeServiceHelper.read (i);
21 }
22
23 public void _write (org.omg.CORBA.portable.OutputStream o)
24 {
25 CosTime.TimeServiceHelper.write (o, value);
26 }
27
28 public org.omg.CORBA.TypeCode _type ()
29 {
30 return CosTime.TimeServiceHelper.type ();
31 }
32
33 }
34