Home | History | Annotate | Download | only in mail

Lines Matching refs:folder

25 import com.android.mail.providers.Folder;
37 * This includes the folder the user selected to view the list, or the search query for the
52 * The folder whose conversations we are displaying, if any.
54 public final Folder folder;
61 sUrlMatcher.addURI(UIProvider.AUTHORITY, "account/*/folder/*", 0);
71 Folder folder = bundle.getParcelable(Utils.EXTRA_FOLDER);
72 return new ConversationListContext(account, bundle.getString(EXTRA_SEARCH_QUERY), folder);
76 * Builds a context for a view to a Gmail folder.
78 * @param folder
81 public static ConversationListContext forFolder(Account account, Folder folder) {
82 return new ConversationListContext(account, null, folder);
88 public static ConversationListContext forSearchQuery(Account account, Folder folder,
90 return new ConversationListContext(account, Preconditions.checkNotNull(query), folder);
101 private ConversationListContext(Account a, String query, Folder f) {
104 folder = f;
123 result.putParcelable(Utils.EXTRA_FOLDER, folder);