1 | String getNumMessagesString() {↵ | | 1 | String getIncrementAsString() {↵
|
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 | INCREMENT);↵
|
| | | 4 | }↵
|
|
8 | public void setDeleteMessages(boolean delete) {↵ | | 5 | public void setIsPerUser(boolean isPer) {↵
|
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 | */↵ | | |
|
14 | public boolean getDeleteMessages↵ | | 7 | PER_USER, isPer));↵
|
| | | 8 | }↵
|
|
15 | () {↵ | | 9 | public boolean isPerUser() {↵
|
16 | return getPropertyAsBoolean(DELETE);↵ | | 10 | return getPropertyAsBoolean(PER_USER);↵
|
17 | } | | 11 | }
|