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

/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DFolderList.java16 public class FolderList implements Parcelable { class in inherits:Parcelable
18 private static final FolderList EMPTY = new FolderList(Collections.<Folder> emptyList());
22 // Private to reinforce the copyOf() API, which makes it more clear that creating a FolderList
24 private FolderList(Collection<Folder> in) { method in class:FolderList
32 public FolderList(Parcel in) { method in class:FolderList
59 * @return the marshalled byte-array form of a {@link FolderList}
69 public static FolderList fromBlob(byte[] blob) {
77 final FolderList result = CREATOR.createFromParcel(p);
82 public static FolderList copyO
[all...]

Completed in 35 milliseconds