1 | String getContentEncoding() {↵ | | 1 | String getNumMessagesString() {↵
|
2 | return getPropertyAsString(CONTENT_ENCODING);↵ | | 2 | return getPropertyAsString(↵
|
3 | }↵ | | |
|
| | | 3 | NUM_MESSAGES);↵
|
| | | 4 | }↵
|
|
| | | 5 | /**↵
|
| | | 6 | * @param delete -↵
|
| | | 7 | * Whether or not to delete the read messages from the folder.↵
|
| | | 8 | */↵
|
4 | public void setUseKeepAlive(boolean value) {↵ | | 9 | public void setDeleteMessages(boolean delete) {↵
|
5 | setProperty(new BooleanProperty(USE_KEEPALIVE, value));↵ | | 10 | setProperty(new BooleanProperty(↵
|
6 | }↵ | | |
|
| | | 11 | DELETE, delete));↵
|
| | | 12 | }↵
|
|
| | | 13 | /**↵
|
| | | 14 | * @return Whether or not to delete the read messages from the folder.↵
|
| | | 15 | */↵
|
7 | public boolean getUseKeepAlive() {↵ | | 16 | public boolean getDeleteMessages() {↵
|
8 | return getPropertyAsBoolean(USE_KEEPALIVE);↵ | | 17 | return getPropertyAsBoolean(DELETE);↵
|
9 | | | 18 |
|