1 package FIPA;
2
3
4 /***
5 * FIPA/DateTime.java
6 * Generated by the IDL-to-Java compiler (portable), version "3.0"
7 * from FIPA.idl
8 * 09 March 2001 16:39:32 o'clock GMT
9 */
10
11
12
13 public final class DateTime implements org.omg.CORBA.portable.IDLEntity
14 {
15 public short year = (short)0;
16
17
18 public short month = (short)0;
19
20
21 public short day = (short)0;
22
23
24 public short hour = (short)0;
25
26
27 public short minutes = (short)0;
28
29
30 public short seconds = (short)0;
31
32
33 public short milliseconds = (short)0;
34
35
36 public char typeDesignator = (char)0;
37
38 public DateTime ()
39 {
40 }
41
42 public DateTime (short _year, short _month, short _day, short _hour, short _minutes, short _seconds, short _milliseconds, char _typeDesignator)
43 {
44 year = _year;
45 month = _month;
46 day = _day;
47 hour = _hour;
48 minutes = _minutes;
49 seconds = _seconds;
50 milliseconds = _milliseconds;
51 typeDesignator = _typeDesignator;
52 }
53
54 }