From: Jeesun Kim Date: Wed, 6 Sep 2017 00:05:49 +0000 (+0900) Subject: [Calendar] Fix spelling error X-Git-Tag: preview1-00175^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=102ea4207a6ce9f0d0ef026be65d3ae4549fd390;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [Calendar] Fix spelling error Change-Id: I5c02c7faffc548236b2ed5664f1b86cdbb905765 --- diff --git a/src/Tizen.Pims.Calendar/Tizen.Pims.Calendar/CalendarDatabase.cs b/src/Tizen.Pims.Calendar/Tizen.Pims.Calendar/CalendarDatabase.cs index acd167088..30c95b2b0 100644 --- a/src/Tizen.Pims.Calendar/Tizen.Pims.Calendar/CalendarDatabase.cs +++ b/src/Tizen.Pims.Calendar/Tizen.Pims.Calendar/CalendarDatabase.cs @@ -421,7 +421,7 @@ namespace Tizen.Pims.Calendar /// The view URI to get records from /// The calendar book ID to filter /// The calendar database version - /// The current calendar database versio> + /// The current calendar database version /// /// The record list /// diff --git a/src/Tizen.Pims.Calendar/Tizen.Pims.Calendar/CalendarStructs.cs b/src/Tizen.Pims.Calendar/Tizen.Pims.Calendar/CalendarStructs.cs index ed69c5b11..002ecba4a 100644 --- a/src/Tizen.Pims.Calendar/Tizen.Pims.Calendar/CalendarStructs.cs +++ b/src/Tizen.Pims.Calendar/Tizen.Pims.Calendar/CalendarStructs.cs @@ -113,7 +113,7 @@ namespace Tizen.Pims.Calendar /// /// Equals CalendarTime /// - /// The CalendarTime to be compared + /// The CalendarTime to be compared /// /// A 32-bit signed integer that indicates the relative order of the objects being compared. /// diff --git a/src/Tizen.Pims.Calendar/Tizen.Pims.Calendar/CalendarTypes.cs b/src/Tizen.Pims.Calendar/Tizen.Pims.Calendar/CalendarTypes.cs index dbd1933bb..4beb345ac 100644 --- a/src/Tizen.Pims.Calendar/Tizen.Pims.Calendar/CalendarTypes.cs +++ b/src/Tizen.Pims.Calendar/Tizen.Pims.Calendar/CalendarTypes.cs @@ -16,440 +16,440 @@ namespace Tizen.Pims.Calendar { - /// - /// This class provides enumurations about calendar information. - /// + /// + /// This class provides enumerations about calendar information. + /// /// /// Most enumerations are based on vcalendar, icalendar(ver 2.0) specification. /// https://www.ietf.org/rfc/rfc2445.txt /// - public static class CalendarTypes - { - /// - /// Enumeration for Default book - /// - public enum DefaultBook - { - /// - /// Default event calendar book. - /// - Event, - /// - /// Default Todo calendar book. - /// - Todo, - /// - /// Default Birthday calendar book. - /// - Birthday, - } + public static class CalendarTypes + { + /// + /// Enumeration for Default book + /// + public enum DefaultBook + { + /// + /// Default event calendar book. + /// + Event, + /// + /// Default Todo calendar book. + /// + Todo, + /// + /// Default Birthday calendar book. + /// + Birthday, + } - /// - /// Enumeration for Store type - /// - public enum StoreType - { - /// - /// Book type - /// - Book, - /// - /// Event type - /// - Event, - /// - /// Todo type - /// - Todo, - } + /// + /// Enumeration for Store type + /// + public enum StoreType + { + /// + /// Book type + /// + Book, + /// + /// Event type + /// + Event, + /// + /// Todo type + /// + Todo, + } - /// - /// Enumeration for the book mode. - /// - public enum BookMode - { - /// - /// All modules can read and write records of this calendar_book - /// - Default, - /// - /// All modules can only read records of this calendar book - /// - ReadOnly, - } + /// + /// Enumeration for the book mode. + /// + public enum BookMode + { + /// + /// All modules can read and write records of this calendar_book + /// + Default, + /// + /// All modules can only read records of this calendar book + /// + ReadOnly, + } - /// - /// Enumeration for the event status. - /// - public enum EventStatus - { - /// - /// No status - /// - None = 0x01, - /// - /// The event is tentative - /// - Tentative = 0x02, - /// - /// The event is confirmed - /// - Confirmed = 0x04, - /// - /// The event is cancelled - /// - Cancelled = 0x08, - } + /// + /// Enumeration for the event status. + /// + public enum EventStatus + { + /// + /// No status + /// + None = 0x01, + /// + /// The event is tentative + /// + Tentative = 0x02, + /// + /// The event is confirmed + /// + Confirmed = 0x04, + /// + /// The event is cancelled + /// + Cancelled = 0x08, + } - /// - /// Enumeration for for the status of a to-do. - /// - public enum TodoStatus - { - /// - /// No status - /// - None = 0x0100, - /// - /// Needs action status - /// - NeedAction = 0x0200, - /// - /// Completed status - /// - Completed = 0x0400, - /// - /// Work in process status - /// - InProcess = 0x0800, - /// - /// Cancelled status - /// - Cancelled = 0x1000, - } + /// + /// Enumeration for for the status of a to-do. + /// + public enum TodoStatus + { + /// + /// No status + /// + None = 0x0100, + /// + /// Needs action status + /// + NeedAction = 0x0200, + /// + /// Completed status + /// + Completed = 0x0400, + /// + /// Work in process status + /// + InProcess = 0x0800, + /// + /// Cancelled status + /// + Cancelled = 0x1000, + } - /// - /// Enumeration for the busy status of an event. - /// - public enum BusyStatus - { - /// - /// The free status - /// - Free, - /// - /// The busy status - /// - Busy, - /// - /// The unavailable status - /// - Unavailable, - /// - /// The tentative status - /// - Tentative, - } + /// + /// Enumeration for the busy status of an event. + /// + public enum BusyStatus + { + /// + /// The free status + /// + Free, + /// + /// The busy status + /// + Busy, + /// + /// The unavailable status + /// + Unavailable, + /// + /// The tentative status + /// + Tentative, + } - /// - /// Enumeration for the calendar sensitivity type. - /// - public enum Sensitivity - { - /// - /// Public Sensitivity - /// - Public, - /// - /// Private Sensitivity - /// - Private, - /// - /// Confidential Sensitivity - /// - Confidential, - } + /// + /// Enumeration for the calendar sensitivity type. + /// + public enum Sensitivity + { + /// + /// Public Sensitivity + /// + Public, + /// + /// Private Sensitivity + /// + Private, + /// + /// Confidential Sensitivity + /// + Confidential, + } - /// - /// Enumeration for the meeting status. - /// - public enum MeetingStatus - { - /// - /// No meeting - /// - NoMeeting, - /// - /// Meeting exists - /// - Meeting, - /// - /// Meeting received - /// - Received, - /// - /// Meeting cancelled - /// - Cancelled, - } + /// + /// Enumeration for the meeting status. + /// + public enum MeetingStatus + { + /// + /// No meeting + /// + NoMeeting, + /// + /// Meeting exists + /// + Meeting, + /// + /// Meeting received + /// + Received, + /// + /// Meeting cancelled + /// + Cancelled, + } - /// - /// Enumeration for the calendar event item's priority - /// - public enum Priority - { - /// - /// No priority - /// - None = 0x01, - /// - /// Low priority - /// - High = 0x02, - /// - /// Normal priority - /// - Normal = 0x04, - /// - /// High priority - /// - Low = 0x08, - } + /// + /// Enumeration for the calendar event item's priority + /// + public enum Priority + { + /// + /// No priority + /// + None = 0x01, + /// + /// Low priority + /// + High = 0x02, + /// + /// Normal priority + /// + Normal = 0x04, + /// + /// High priority + /// + Low = 0x08, + } - /// - /// Enumeration for the frequency of an event's recurrence. - /// - public enum Recurrence - { - /// - /// No recurrence event - /// - None, - /// - /// An event occurs every day - /// - Daily, - /// - /// An event occurs on the same day of every week. According to the week flag, the event will recur every day of the week - /// - Weekly, - /// - /// An event occurs on the same day of every month - /// - Monthly, - /// - /// An event occurs on the same day of every year - /// - Yearly, - } + /// + /// Enumeration for the frequency of an event's recurrence. + /// + public enum Recurrence + { + /// + /// No recurrence event + /// + None, + /// + /// An event occurs every day + /// + Daily, + /// + /// An event occurs on the same day of every week. According to the week flag, the event will recur every day of the week + /// + Weekly, + /// + /// An event occurs on the same day of every month + /// + Monthly, + /// + /// An event occurs on the same day of every year + /// + Yearly, + } - /// - /// Enumeration for the range type. - /// - public enum RangeType - { - /// - /// Range until - /// - Until, - /// - /// Range count - /// - Count, - /// - /// No range - /// - None, - } + /// + /// Enumeration for the range type. + /// + public enum RangeType + { + /// + /// Range until + /// + Until, + /// + /// Range count + /// + Count, + /// + /// No range + /// + None, + } - /// - /// Enumeration for the system type. - /// - public enum SystemType - { - /// - /// Locale's default calendar - /// - Default, - /// - /// Locale's default calendar - /// - Gregorian, - /// - /// East Asian lunisolar calendar - /// - Lunisolar, - } + /// + /// Enumeration for the system type. + /// + public enum SystemType + { + /// + /// Locale's default calendar + /// + Default, + /// + /// Locale's default calendar + /// + Gregorian, + /// + /// East Asian lunisolar calendar + /// + Lunisolar, + } - /// - /// Enumeration for the alarm time unit type of an event, such as minutes, hours, days, and so on. - /// - public enum TickUnit - { - /// - /// No reminder set - /// - None = -1, - /// - /// Specific in seconds - /// - Specific = 1, - /// - /// Alarm time unit in minutes - /// - Minute = 60, - /// - /// Alarm time unit in hours - /// - Hour = 3600, - /// - /// Alarm time unit in days - /// - Day = 86400, - /// - /// Alarm time unit in weeks - /// - Week = 604800, - } + /// + /// Enumeration for the alarm time unit type of an event, such as minutes, hours, days, and so on. + /// + public enum TickUnit + { + /// + /// No reminder set + /// + None = -1, + /// + /// Specific in seconds + /// + Specific = 1, + /// + /// Alarm time unit in minutes + /// + Minute = 60, + /// + /// Alarm time unit in hours + /// + Hour = 3600, + /// + /// Alarm time unit in days + /// + Day = 86400, + /// + /// Alarm time unit in weeks + /// + Week = 604800, + } - /// - /// Enumeration for weekdays. - /// - public enum WeekDay - { - /// - /// Sunday - /// - Sunday = 1, - /// - /// Monday - /// - Monday, - /// - /// Tuesday - /// - Tuesday, - /// - /// Wednesday - /// - Wednesday, - /// - /// Thursday - /// - Thursday, - /// - /// Friday - /// - Friday, - /// - /// Saturday - /// - Saturday, - } + /// + /// Enumeration for weekdays. + /// + public enum WeekDay + { + /// + /// Sunday + /// + Sunday = 1, + /// + /// Monday + /// + Monday, + /// + /// Tuesday + /// + Tuesday, + /// + /// Wednesday + /// + Wednesday, + /// + /// Thursday + /// + Thursday, + /// + /// Friday + /// + Friday, + /// + /// Saturday + /// + Saturday, + } - /// - /// Enumeration to specify the type of calendar user specified by the property. - /// - public enum Cutype - { - /// + /// + /// Enumeration to specify the type of calendar user specified by the property. + /// + public enum Cutype + { + /// /// An individual - /// - Individual, - /// + /// + Individual, + /// /// A group of individuals - /// - Group, - /// + /// + Group, + /// /// A physical resource - /// - Resource, - /// + /// + Resource, + /// /// A room resource - /// - Room, - /// + /// + Room, + /// /// Otherwise not known - /// - Unknown, - } + /// + Unknown, + } - /// - /// Enumeration for the attendee role. - /// - public enum AttendeeRole - { - /// - /// Participation is required - /// - ReqParticipant, - /// - /// Accepted status - /// - OptParticipant, - /// - /// Non-Participant - /// - NonParticipant, - /// - /// Chairperson - /// - Chair, - } + /// + /// Enumeration for the attendee role. + /// + public enum AttendeeRole + { + /// + /// Participation is required + /// + ReqParticipant, + /// + /// Accepted status + /// + OptParticipant, + /// + /// Non-Participant + /// + NonParticipant, + /// + /// Chairperson + /// + Chair, + } - /// - /// Enumeration for the attendee status. - /// - public enum AttendeeStatus - { - /// - /// Pending status - /// - Pending, - /// - /// Accepted status - /// - Accepted, - /// - /// Declined status - /// - Declined, - /// - /// Tentative status - /// - Tentative, - /// - /// Delegated status - /// - Delegated, - /// - /// Completed status - /// - Completed, - /// - /// In process status - /// - InProcess, - } + /// + /// Enumeration for the attendee status. + /// + public enum AttendeeStatus + { + /// + /// Pending status + /// + Pending, + /// + /// Accepted status + /// + Accepted, + /// + /// Declined status + /// + Declined, + /// + /// Tentative status + /// + Tentative, + /// + /// Delegated status + /// + Delegated, + /// + /// Completed status + /// + Completed, + /// + /// In process status + /// + InProcess, + } - /// - /// Enumeration for the alarm action. - /// - public enum Action - { - /// - /// Audio action - /// - Audio, - /// - /// Display action - /// - Display, - /// - /// Email action - /// - Email, - } - } + /// + /// Enumeration for the alarm action. + /// + public enum Action + { + /// + /// Audio action + /// + Audio, + /// + /// Display action + /// + Display, + /// + /// Email action + /// + Email, + } + } } diff --git a/src/Tizen.Pims.Calendar/Tizen.Pims.Calendar/CalendarVcalendar.cs b/src/Tizen.Pims.Calendar/Tizen.Pims.Calendar/CalendarVcalendar.cs index fc272b41a..d79e6c5e6 100644 --- a/src/Tizen.Pims.Calendar/Tizen.Pims.Calendar/CalendarVcalendar.cs +++ b/src/Tizen.Pims.Calendar/Tizen.Pims.Calendar/CalendarVcalendar.cs @@ -22,7 +22,7 @@ namespace Tizen.Pims.Calendar /// Parsing vcalendar file callback function. /// /// The record - /// + /// true to continue with the next iteration of the loop, otherwise false to break out of the loop public delegate bool ParseCallback(CalendarRecord record); /// diff --git a/src/Tizen.Pims.Calendar/Tizen.Pims.Calendar/ReminderEventArgs.cs b/src/Tizen.Pims.Calendar/Tizen.Pims.Calendar/ReminderEventArgs.cs index aa4e020de..e5e533403 100644 --- a/src/Tizen.Pims.Calendar/Tizen.Pims.Calendar/ReminderEventArgs.cs +++ b/src/Tizen.Pims.Calendar/Tizen.Pims.Calendar/ReminderEventArgs.cs @@ -30,7 +30,7 @@ namespace Tizen.Pims.Calendar } /// - /// The parameter which data is combinded. + /// The parameter which data is combined. /// /// /// The combination of reminder data(Value string like id=value&time=value&tick=value&unit=value&type=value)