Home | History | Annotate | Download | only in mail

Lines Matching refs:Folder

23 public abstract class Folder {
36 INBOX, // NOTE: The folder's name must be INBOX
42 OTHER, // this folder has no specific role
43 UNKNOWN // the role of this folder is unknown
49 * Not all {@link Folder} implementations may invoke it.
61 * @param callbacks Pointer to callbacks class. This may be used by the folder between this
84 * Returns the mode the folder was opened with. This may be different than the mode the open
91 * Does not actually attempt to create a folder.
98 * Attempt to create the given folder remotely using the given type.
106 * Returns the number of messages in the selected folder.
147 * Copies the given messages to the destination folder.
149 public abstract void copyMessages(Message[] msgs, Folder folder,
167 * This method returns a string identifying the name of a "role" folder
170 * let the server identify specific folder roles, simply override this method.
172 * @return The server- or protocol- specific role for this folder. If some roles are known
181 * Create an empty message of the appropriate type for the Folder.
186 * Callback interface by which a folder can report UID changes caused by certain operations.