Methods Summary |
---|
public void | appendMessages(Message[] msgs)
throw new MethodNotSupportedException("Append not supported");
|
public void | close(boolean expunge)
throw new MethodNotSupportedException("close");
|
public boolean | create(int type)
return false;
|
public boolean | delete(boolean recurse)
throw new MethodNotSupportedException("delete");
|
public boolean | exists()
return true;
|
public Message[] | expunge()
throw new MethodNotSupportedException("expunge");
|
public javax.mail.Folder | getFolder(java.lang.String name)
if (!name.equalsIgnoreCase("INBOX")) {
throw new MessagingException("only INBOX supported");
} else {
return getInbox();
}
|
public java.lang.String | getFullName()
return "";
|
protected javax.mail.Folder | getInbox()
return getStore().getFolder("INBOX");
|
public Message | getMessage(int msgno)
throw new MethodNotSupportedException("getMessage");
|
public int | getMessageCount()
return 0;
|
public java.lang.String | getName()
return "";
|
public javax.mail.Folder | getParent()
return null;
|
public javax.mail.Flags | getPermanentFlags()
return new Flags(); // empty flags object
|
public char | getSeparator()
return '/";
|
public int | getType()
return HOLDS_FOLDERS;
|
public boolean | hasNewMessages()
return false;
|
public boolean | isOpen()
return false;
|
public javax.mail.Folder[] | list(java.lang.String pattern)
Folder[] f = { getInbox() };
return f;
|
public void | open(int mode)
throw new MethodNotSupportedException("open");
|
public boolean | renameTo(javax.mail.Folder f)
throw new MethodNotSupportedException("renameTo");
|