(POP3Store store, String name)
| 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() { |
nothing calls this directly
no test coverage detected