2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / LenientDatePrototype.cs
1 //
2 // LenientDatePrototype.cs:
3 //
4 // Author:
5 //      Cesar Lopez Nataren (cesar@ciencias.unam.mx)
6 //
7 // (C) 2003, Cesar Lopez Nataren
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 namespace Microsoft.JScript.Tmp
32 {
33         using System;
34
35         public sealed class LenientDatePrototype : DatePrototype
36         {  
37                 public new Object constructor;
38                 public new Object getTime;
39                 public new Object getYear;
40                 public new Object getFullYear;
41                 public new Object getUTCFullYear;
42                 public new Object getMonth;
43                 public new Object getUTCMonth;
44                 public new Object getDate;
45                 public new Object getUTCDate;
46                 public new Object getDay;
47                 public new Object getUTCDay;
48                 public new Object getHours;
49                 public new Object getUTCHours;
50                 public new Object getMinutes;
51                 public new Object getUTCMinutes;
52                 public new Object getSeconds;
53                 public new Object getUTCSeconds;
54                 public new Object getMilliseconds;
55                 public new Object getUTCMilliseconds;
56                 public new Object getVarDate;
57                 public new Object getTimezoneOffset;
58                 public new Object setTime;
59                 public new Object setMilliseconds;
60                 public new Object setUTCMilliseconds;
61                 public new Object setSeconds;
62                 public new Object setUTCSeconds;
63                 public new Object setMinutes;
64                 public new Object setUTCMinutes;
65                 public new Object setHours;
66                 public new Object setUTCHours;
67                 public new Object setDate;
68                 public new Object setUTCDate;
69                 public new Object setMonth;
70                 public new Object setUTCMonth;
71                 public new Object setFullYear;
72                 public new Object setUTCFullYear;
73                 public new Object setYear;
74                 public new Object toGMTString;
75                 public new Object toDateString;
76                 public new Object toLocaleDateString;
77                 public new Object toLocaleString;
78                 public new Object toLocaleTimeString;
79                 public new Object toString;
80                 public new Object toTimeString;
81                 public new Object toUTCString;
82                 public new Object valueOf;
83         }
84 }