View Javadoc

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  // to the local timezone.
13  public final class DateTime implements org.omg.CORBA.portable.IDLEntity
14  {
15    public short year = (short)0;
16  
17    // year (e.g. 2000)
18    public short month = (short)0;
19  
20    // between 1 and 12
21    public short day = (short)0;
22  
23    // between 1 and 31
24    public short hour = (short)0;
25  
26    // between 0 and 23
27    public short minutes = (short)0;
28  
29    // between 0 and 59
30    public short seconds = (short)0;
31  
32    // between 0 and 59
33    public short milliseconds = (short)0;
34  
35    // between 0 and 999
36    public char typeDesignator = (char)0;
37  
38    public DateTime ()
39    {
40    } // ctor
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    } // ctor
53  
54  } // class DateTime