mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-11 12:05:06 -05:00
20 lines
318 B
Java
20 lines
318 B
Java
|
|
package com.fsck.k9;
|
|
|
|
import com.fsck.k9.mail.Flag;
|
|
|
|
public interface SearchSpecification
|
|
{
|
|
|
|
public Flag[] getRequiredFlags();
|
|
|
|
public Flag[] getForbiddenFlags();
|
|
|
|
public boolean isIntegrate();
|
|
|
|
public String getQuery();
|
|
|
|
public String[] getAccountUuids();
|
|
|
|
public String[] getFolderNames();
|
|
} |