Merge pull request #726 from pruiz/xamarin-bug-13708
[mono.git] / mcs / class / corlib / System.Globalization / KoreanCalendar.cs
index dd14c2a309a6e54e18afa1e4c7ccb184b7ddaf59..80f266c36069a93816e4af60806fd525e91eb310 100644 (file)
@@ -1,11 +1,35 @@
-// KoreanCalendar.cs
+// System.Globalization.KoreanCalendar.cs
 //
 // (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;
+using System.Runtime.InteropServices;
 
 /// <summary>
 /// This is the Korean calendar. It differs from the Gegorian calendar only
@@ -17,6 +41,8 @@ using System;
 /// </para>
 /// </remarks>
 [Serializable]
+[ComVisible (true)]
+[MonoLimitation ("Serialization format not compatible with .NET")]
 public class KoreanCalendar : Calendar {
        /// <summary>
        /// Static protected field storing the
@@ -45,8 +71,8 @@ public class KoreanCalendar : Calendar {
        public KoreanCalendar() {
                M_AbbrEraNames = new string[] {"K.C.E."};
                M_EraNames = new string[] {"Korean Current Era"};
-               if (M_TwoDigitYearMax == 99)
-                       M_TwoDigitYearMax = 4362;
+               if (twoDigitYearMax == 99)
+                       twoDigitYearMax = 4362;
        }
 
        /// <value>Overridden. Gives the eras supported by the
@@ -58,6 +84,19 @@ public class KoreanCalendar : Calendar {
                }
        }
 
+       public override int TwoDigitYearMax 
+       {
+               get {
+                       return twoDigitYearMax;
+               }
+               set {
+                       CheckReadOnly ();
+                       M_ArgumentInRange ("value", value, 100, M_MaxYear);
+
+                       twoDigitYearMax = value;
+               }
+       }
+       
        /// <summary>
        /// A protected method checking the era number.
        /// </summary>
@@ -283,6 +322,12 @@ public class KoreanCalendar : Calendar {
                return era;
        }
 
+       [ComVisible (false)]
+       public override int GetLeapMonth (int year, int era)
+       {
+               return 0;
+       }
+
        /// <summary>
        /// Overridden. Gives the number of the month of the specified
        /// date.
@@ -315,6 +360,12 @@ public class KoreanCalendar : Calendar {
                return 12;
        }
 
+       [ComVisible (false)]
+       public override int GetWeekOfYear (DateTime time, CalendarWeekRule rule, DayOfWeek firstDayOfWeek)
+       {
+               return base.GetWeekOfYear (time, rule, firstDayOfWeek);
+       }
+
        /// <summary>
        /// Overridden. Gives the number of the year of the specified
        /// date.
@@ -431,14 +482,46 @@ public class KoreanCalendar : Calendar {
        /// is out of range.
        /// </exception>
        public override DateTime ToDateTime(int year, int month, int day,
-               int hour, int minute, int second, int milliseconds,
+               int hour, int minute, int second, int millisecond,
                int era)
        {
                int gregorianYear = M_CheckYMDEG(year, month, day, ref era);
-               M_CheckHMSM(hour, minute, second, milliseconds);
+               M_CheckHMSM(hour, minute, second, millisecond);
                return CCGregorianCalendar.ToDateTime(gregorianYear,
-                       month, day, hour, minute, second, milliseconds);
+                       month, day, hour, minute, second, millisecond);
        }
+
+       public override int ToFourDigitYear(int year)
+       {
+               return base.ToFourDigitYear (year);
+       }
+       
+#if !NET_2_1
+       [ComVisible (false)]
+       public override CalendarAlgorithmType AlgorithmType {
+               get {
+                       return CalendarAlgorithmType.SolarCalendar;
+               }
+       }
+#endif
+
+       static DateTime KoreanMin = new DateTime (1, 1, 1, 0, 0, 0);
+       static DateTime KoreanMax = new DateTime (9999, 12, 31, 11, 59, 59);
+               
+       [ComVisible (false)]
+       public override DateTime MinSupportedDateTime {
+               get {
+                       return KoreanMin;
+               }
+       }
+
+       [ComVisible (false)]
+       public override DateTime MaxSupportedDateTime {
+               get {
+                       return KoreanMax;
+               }
+       }
+       
 } // class KoreanCalendar
        
 } // namespace System.Globalization