Searched defs:SyncAdapterType (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/content/
H A DSyncAdapterType.java24 * Value type that represents a SyncAdapterType. This object overrides {@link #equals} and
27 public class SyncAdapterType implements Parcelable { class in inherits:Parcelable
34 public SyncAdapterType(String authority, String accountType, boolean userVisible, method in class:SyncAdapterType
49 private SyncAdapterType(String authority, String accountType) { method in class:SyncAdapterType
79 public static SyncAdapterType newKey(String authority, String accountType) {
80 return new SyncAdapterType(authority, accountType);
85 if (!(o instanceof SyncAdapterType)) return false;
86 final SyncAdapterType other = (SyncAdapterType)o;
101 return "SyncAdapterType Ke
128 public SyncAdapterType(Parcel source) { method in class:SyncAdapterType
[all...]

Completed in 204 milliseconds