2010-04-22 02:20:35 +00:00
|
|
|
|
|
|
|
package com.fsck.k9;
|
|
|
|
|
|
|
|
import com.fsck.k9.mail.Flag;
|
|
|
|
|
2011-02-06 17:09:48 -05:00
|
|
|
public interface SearchSpecification {
|
2010-04-29 04:59:14 +00:00
|
|
|
|
2010-04-22 02:20:35 +00:00
|
|
|
public Flag[] getRequiredFlags();
|
|
|
|
|
|
|
|
public Flag[] getForbiddenFlags();
|
2010-04-29 04:59:14 +00:00
|
|
|
|
2010-04-22 02:20:35 +00:00
|
|
|
public boolean isIntegrate();
|
|
|
|
|
|
|
|
public String getQuery();
|
2010-04-29 04:59:14 +00:00
|
|
|
|
2010-04-22 02:20:35 +00:00
|
|
|
public String[] getAccountUuids();
|
2010-04-29 04:59:14 +00:00
|
|
|
|
2010-04-24 19:10:57 +00:00
|
|
|
public String[] getFolderNames();
|
2010-04-22 02:20:35 +00:00
|
|
|
}
|