* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / corlib / System.Globalization / TaiwanCalendar.cs
index 16728c628a45bafceb926ef4a028448d57c5a2e6..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,13 +41,17 @@ 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
        /// <see cref="T:CalendricalCalculations.GregorianEraHandler"/>.
        /// </summary>
-       protected static readonly CCGregorianEraHandler M_EraHandler;
+       internal static readonly CCGregorianEraHandler M_EraHandler;
 
        /// <summary>
        /// Static constructor, who creates and initializes
@@ -53,6 +80,21 @@ public class TaiwanCalendar : Calendar {
                }
        }
 
+       int twoDigitYearMax = 99;
+       
+       public override int TwoDigitYearMax 
+       {
+               get {
+                       return twoDigitYearMax;
+               }
+               set {
+                       CheckReadOnly ();
+                       M_ArgumentInRange ("value", value, 100, M_MaxYear);
+
+                       twoDigitYearMax = value;
+               }
+       }
+
        /// <summary>
        /// A protected member checking a
        /// <see cref="T:System.DateTime"/> value.
@@ -66,7 +108,7 @@ public class TaiwanCalendar : Calendar {
        /// <see cref="T:System.DateTime"/> parameter is outside all
        /// supported eras.
        /// </exception>
-       protected void M_CheckDateTime(DateTime time) {
+       internal void M_CheckDateTime(DateTime time) {
                M_EraHandler.CheckDateTime(time);
        }
 
@@ -78,7 +120,7 @@ public class TaiwanCalendar : Calendar {
        /// <exception name="T:System.ArgumentException">
        /// The exception is thrown if the era is not supported by the class.
        /// </exception>
-       protected void M_CheckEra(ref int era) {
+       internal void M_CheckEra(ref int era) {
                if (era == CurrentEra)
                        era = 1;
                if (!M_EraHandler.ValidEra(era))
@@ -98,7 +140,7 @@ public class TaiwanCalendar : Calendar {
        /// The exception is thrown if the calendar year is outside of
        /// the supported range.
        /// </exception>
-       protected int M_CheckYEG(int year, ref int era) {
+       internal int M_CheckYEG(int year, ref int era) {
                M_CheckEra(ref era);
                return M_EraHandler.GregorianYear(year, era);
        }
@@ -112,7 +154,7 @@ public class TaiwanCalendar : Calendar {
        /// <exception cref="T:ArgumentOutOfRangeException">
        /// The exception will be thrown, if the year is not valid.
        /// </exception>
-       protected override void M_CheckYE(int year, ref int era) {
+       internal override void M_CheckYE(int year, ref int era) {
                M_CheckYEG(year, ref era);
        }
 
@@ -132,7 +174,7 @@ public class TaiwanCalendar : Calendar {
        /// The exception is thrown if the calendar year or month is
        /// outside of the supported range.
        /// </exception>
-       protected int M_CheckYMEG(int year, int month, ref int era) {
+       internal int M_CheckYMEG(int year, int month, ref int era) {
                int gregorianYear = M_CheckYEG(year, ref era);
                if (month < 1 || month > 12)
                        throw new ArgumentOutOfRangeException("month",
@@ -158,7 +200,7 @@ public class TaiwanCalendar : Calendar {
        /// The exception is thrown if the calendar year, month, or day is
        /// outside of the supported range.
        /// </exception>
-       protected int M_CheckYMDEG(int year, int month, int day, ref int era)
+       internal int M_CheckYMDEG(int year, int month, int day, ref int era)
        {
                int gregorianYear = M_CheckYMEG(year, month, ref era);
                M_ArgumentInRange("day", day, 1,
@@ -166,6 +208,10 @@ public class TaiwanCalendar : Calendar {
                return gregorianYear;
        }
 
+#if false
+
+       // Ifdefed out because this is not on the .NET Framework
+       
        /// <summary>
        /// Overridden. Adds days to a given date.
        /// </summary>
@@ -380,7 +426,8 @@ public class TaiwanCalendar : Calendar {
                M_CheckDateTime(time);
                return base.GetMinute(time);
        }
-
+#endif
+       
        /// <summary>
        /// Overrideden. Adds months to a given date.
        /// </summary>
@@ -740,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