1 | String getNumMessagesString() {↵ | | 1 | String getDefaultValue() {↵
|
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 | */↵ | | |
|
8 | ↵ | | 3 | DEFAULT);↵
|
| | | 4 | }↵
|
| | | 5 | ↵
|
9 | public void setDeleteMessages(boolean delete) {↵ | | 6 | public void setTolerant(boolean val) {↵
|
10 | setProperty(new BooleanProperty(DELETE, delete));↵ | | 7 | setProperty(new BooleanProperty(↵
|
11 | }↵ | | |
|
|
12 | /**↵ | | |
|
13 | * @return Whether or not to delete the read messages from the folder.↵ | | |
|
14 | */↵ | | |
|
15 | public boolean getDeleteMessages↵ | | 8 | TOLERANT, val));↵
|
| | | 9 | }↵
|
|
16 | () {↵ | | 10 | public boolean isTolerant() {↵
|
17 | return getPropertyAsBoolean(DELETE);↵ | | 11 | return getPropertyAsBoolean(TOLERANT);↵
|
18 | | | 12 |
|