HomeSort by relevance Sort by last modified time
    Searched defs:MessageListContext (Results 1 - 3 of 3) sorted by null

  /packages/apps/Email/src/com/android/email/
MessageListContext.java 36 public class MessageListContext implements Parcelable {
40 * the creation of a new {@link MessageListContext}
56 private MessageListContext(long accountId, long searchMailboxId, SearchParams searchParams) {
69 public static MessageListContext forIntent(Context context, Intent intent) {
98 public static MessageListContext forSearch(
103 return new MessageListContext(accountId, searchMailboxId, searchParams);
109 public static MessageListContext forMailbox(long accountId, long mailboxId) {
112 return new MessageListContext(accountId, mailboxId, null);
136 if ((o == null) || !(o instanceof MessageListContext)) {
140 MessageListContext om = (MessageListContext) o
    [all...]
  /packages/apps/Email/src/com/android/email/activity/
UIControllerTwoPane.java 29 import com.android.email.MessageListContext;
93 setListContext(MessageListContext.forMailbox(accountId, mailboxId));
109 MessageListContext context = fragment == null ? null : fragment.getListContext();
364 public void openInternal(final MessageListContext listContext, final long messageId) {
UIControllerBase.java 31 import com.android.email.MessageListContext;
108 * Should be set using {@link #setListContext(MessageListContext)}.
110 protected MessageListContext mListContext;
593 open(MessageListContext.forMailbox(accountId, mailboxId), Message.NO_MESSAGE);
602 public final void open(final MessageListContext listContext, final long messageId) {
614 protected void setListContext(MessageListContext listContext) {
626 final MessageListContext listContext, final long messageId);
    [all...]

Completed in 2673 milliseconds