/**@class android.content.SyncAdapterType
implements android.os.Parcelable
@extends java.lang.Object
Value type that represents a SyncAdapterType. This object overrides {@link #equals} and
{@link #hashCode}, making it suitable for use as the key of a {@link java.util.Map}
*/
var SyncAdapterType = {
/***/
authority : "null",
/***/
accountType : "null",
/***/
isKey : "null",
/***/
CREATOR : "null",
/**
*/
supportsUploading : function( ) {},
/**
*/
isUserVisible : function( ) {},
/**
@return {Boolean} True if this SyncAdapter supports syncing multiple accounts simultaneously.
If false then the SyncManager will take care to only start one sync at a time
using this SyncAdapter.
*/
allowParallelSyncs : function( ) {},
/**If true then the SyncManager will never issue an initialization sync to the SyncAdapter
and will instead automatically call
{@link android.content.ContentResolver#setIsSyncable(android.accounts.Account, String, int)} with a
value of 1 for each account and provider that this sync adapter supports.
@return {Boolean} true if the SyncAdapter does not require initialization and if it is ok for the
SyncAdapter to treat it as syncable automatically.
*/
isAlwaysSyncable : function( ) {},
/**
@return {String} The activity to use to invoke this SyncAdapter's settings activity.
May be null.
*/
getSettingsActivity : function( ) {},
/**
*/
newKey : function( ) {},
/**
*/
equals : function( ) {},
/**
*/
hashCode : function( ) {},
/**
*/
toString : function( ) {},
/**
*/
describeContents : function( ) {},
/**
*/
writeToParcel : function( ) {},
};