/**@class android.provider.CalendarContract.CalendarEntity implements android.provider.BaseColumns implements android.provider.CalendarContract.SyncColumns implements android.provider.CalendarContract.CalendarColumns @extends java.lang.Object Class that represents a Calendar Entity. There is one entry per calendar. This is a helper class to make batch operations easier. */ var CalendarEntity = { /** The default Uri used when creating a new calendar EntityIterator. */ CONTENT_URI : "null", /**Creates an entity iterator for the given cursor. It assumes the cursor contains a calendars query. @param {Object {Cursor}} cursor query on {@link #CONTENT_URI} @return {Object {android.content.EntityIterator}} an EntityIterator of calendars */ newEntityIterator : function( ) {}, };