Added stubs for the added functions needed for the DAMail merge. Did not add @Override. Doing it this way to allow easier testing/modifications in preparation for the merge to trunk. All trunk changes will be committed to the DAMail merge branch next.

This commit is contained in:
Matthew Brace 2008-12-26 06:52:07 +00:00
parent 2dede98463
commit 34be0269f8
1 changed files with 12 additions and 0 deletions

View File

@ -1210,6 +1210,18 @@ public class WebDavStore extends Store {
public boolean equals(Object o) {
return false;
}
public String getUidFromMessageId(Message message) throws MessagingException {
Log.e(Email.LOG_TAG, "Unimplemented method getUidFromMessageId in WebDavStore.WebDavFolder could lead to duplicate messages "
+ " being uploaded to the Sent folder");
return null;
}
public void setFlags(Flag[] flags, boolean value) throws MessagingException {
Log.e(Email.LOG_TAG, "Unimplemented method setFlags(Flag[], boolean) breaks markAllMessagesAsRead and EmptyTrash");
// Try to make this efficient by not retrieving all of the messages
return;
}
}
/**