* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / corlib / System.Globalization / TaiwanCalendar.cs
index e0dc6a4d848007385b7f0516acb7d8a6dde44bb4..495abb9369778acf0bca81b0f39d0daf667e9d79 100644 (file)
@@ -3,6 +3,29 @@
 // (C) Ulrich Kunitz 2002
 //
 
+//
+// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
 namespace System.Globalization {
 
 using System;
@@ -18,7 +41,11 @@ using System;
 /// <see cref="N:CalendricalCalculations"/> namespace.
 /// </para>
 /// </remarks>
+#if NET_2_0
+[System.Runtime.InteropServices.ComVisible(true)]
+#endif
 [Serializable]
+[MonoTODO ("Fix serialization compatibility with MS.NET")]
 public class TaiwanCalendar : Calendar {
        /// <summary>
        /// Static protected field storing the
@@ -61,6 +88,7 @@ public class TaiwanCalendar : Calendar {
                        return twoDigitYearMax;
                }
                set {
+                       CheckReadOnly ();
                        M_ArgumentInRange ("value", value, 100, M_MaxYear);
 
                        twoDigitYearMax = value;
@@ -759,6 +787,29 @@ public class TaiwanCalendar : Calendar {
                M_CheckYE(year, ref era);
                return year;
        }
+#if NET_2_0
+       public override CalendarAlgorithmType AlgorithmType {
+               get {
+                       return CalendarAlgorithmType.SolarCalendar;
+               }
+       }
+
+       static DateTime TaiwanMin = new DateTime (1912, 1, 1, 0, 0, 0);
+       static DateTime TaiwanMax = new DateTime (9999, 12, 31, 11, 59, 59);
+               
+       public override DateTime MinSupportedDateTime {
+               get {
+                       return TaiwanMin;
+               }
+       }
+
+       public override DateTime MaxSupportedDateTime {
+               get {
+                       return TaiwanMax;
+               }
+       }
+#endif
+       
 } // class TaiwanCalendar
        
 } // namespace System.Globalization