Home | History | Annotate | Download | only in provider

Lines Matching defs:Calendars

53  * <li>The {@link Calendars} table holds the calendar specific information. Each
73 * {@link Calendars#MAX_REMINDERS} which is set by the Sync Adapter that owns
173 * {@link Calendars#ACCOUNT_NAME} and {@link Calendars#ACCOUNT_TYPE} as
181 * A special account type for calendars not associated with any account.
182 * Normally calendars that do not match an account on the device will be
199 * editable as part of the Calendars Uri, but can only be read if accessed
267 * Columns for Sync information used by Calendars and Events tables. These
333 * Columns specific to the Calendars Uri that other Uris can query.
418 calendars.
477 * provider will return 1 if {@link Calendars#ACCOUNT_NAME} is equal to
478 * {@link Calendars#OWNER_ACCOUNT}.
503 * cursor contains a calendars query.
506 * @return an EntityIterator of calendars
545 DatabaseUtils.cursorStringToContentValuesIfPresent(cursor, cv, Calendars.NAME);
547 Calendars.CALENDAR_DISPLAY_NAME);
549 Calendars.CALENDAR_COLOR);
551 Calendars.CALENDAR_COLOR_KEY);
556 Calendars.CALENDAR_LOCATION);
559 Calendars.OWNER_ACCOUNT);
561 Calendars.CAN_ORGANIZER_RESPOND);
563 Calendars.CAN_MODIFY_TIME_ZONE);
565 Calendars.MAX_REMINDERS);
567 Calendars.CAN_PARTIALLY_UPDATE);
569 Calendars.ALLOWED_REMINDERS);
586 * Constants and helpers for the Calendars table, which contains details for
587 * individual calendars. <h3>Operations</h3> All operations can be done
594 * columns but are restricted to a single account at a time. Calendars are
596 * calendars should be done as a sync adapter. For the most part, apps
597 * should only update calendars (such as changing the color or display
627 * the _id of the calendar. Calendars may also be updated using a selection
632 * <dd>Calendars can be deleted either by the {@link #_ID} as an appended id
637 * <dd>Querying the Calendars table will get you all information about a set
638 * of calendars. There will be one row returned for each calendar that
650 * The following Calendars columns are writable only by a sync adapter
682 public static final class Calendars implements BaseColumns, SyncColumns, CalendarColumns {
687 private Calendars() {}
690 * The content:// style URL for accessing Calendars
693 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/calendars");
886 * The {@link Calendars#_ID} of the calendar the event belongs to.
932 * {@link Calendars#CALENDAR_COLOR}.
934 * {@link Calendars#CALENDAR_COLOR} directly.
1024 * event is on a calendar with {@link Calendars#CAN_PARTIALLY_UPDATE} set to 1. This copy
1226 * will return 1 if {@link #ORGANIZER} is equal to {@link Calendars#OWNER_ACCOUNT}.
1726 private static final String WHERE_CALENDARS_SELECTED = Calendars.VISIBLE + "=?";
2448 * This indicateds a color that can be used for calendars.
2486 * have been removed from the {@link Calendars} or {@link Events} tables.