MCPcopy Create free account
hub / github.com/M66B/FairEmail / POP3Folder

Method POP3Folder

app/src/main/java/com/sun/mail/pop3/POP3Folder.java:58–66  ·  view source on GitHub ↗
(POP3Store store, String name)

Source from the content-addressed store, hash-verified

56 MailLogger logger; // package private, for POP3Message
57
58 protected POP3Folder(POP3Store store, String name) {
59 super(store);
60 this.name = name;
61 this.store = store;
62 if (name.equalsIgnoreCase("INBOX"))
63 exists = true;
64 logger = new MailLogger(this.getClass(), "DEBUG POP3",
65 store.getSession().getDebug(), store.getSession().getDebugOut());
66 }
67
68 @Override
69 public String getName() {

Callers

nothing calls this directly

Calls 3

getDebugMethod · 0.80
getDebugOutMethod · 0.80
getSessionMethod · 0.45

Tested by

no test coverage detected