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