2006-01-25 Cesar Lopez Nataren <cnataren@novell.com>
[mono.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / LenientStringPrototype.cs
1 //
2 // LenientStringPrototype.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 {
32
33         public sealed class LenientStringPrototype : StringPrototype {
34
35                 public new object constructor;
36                 public new object anchor;
37                 public new object big;
38                 public new object blink;
39                 public new object bold;
40                 public new object charAt;
41                 public new object charCodeAt;
42                 public new object concat;
43                 public new object @fixed;
44                 public new object fontcolor;
45                 public new object fontsize;
46                 public new object indexOf;
47                 public new object italics;
48                 public new object lastIndexOf;
49                 public new object link;
50                 public new object localeCompare;
51                 public new object match;
52                 public new object replace;
53                 public new object search;
54                 public new object slice;
55                 public new object small;
56                 public new object split;
57                 public new object strike;
58                 public new object sub;
59                 public new object substr;
60                 public new object substring;
61                 public new object sup;
62                 public new object toLocaleLowerCase;
63                 public new object toLocaleUpperCase;
64                 public new object toLowerCase;
65                 public new object toString;
66                 public new object toUpperCase;
67                 public new object valueOf;
68         }
69 }