1 package TimeBase;
2
3 /**
* TimeBase/UtcTHolder.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 UtcTHolder implements org.omg.CORBA.portable.Streamable
6 {
7 public TimeBase.UtcT value = null;
8
9 public UtcTHolder ()
10 {
11 }
12
13 public UtcTHolder (TimeBase.UtcT initialValue)
14 {
15 value = initialValue;
16 }
17
18 public void _read (org.omg.CORBA.portable.InputStream i)
19 {
20 value = TimeBase.UtcTHelper.read (i);
21 }
22
23 public void _write (org.omg.CORBA.portable.OutputStream o)
24 {
25 TimeBase.UtcTHelper.write (o, value);
26 }
27
28 public org.omg.CORBA.TypeCode _type ()
29 {
30 return TimeBase.UtcTHelper.type ();
31 }
32
33 }
34