1 | String getUserName() {↵ | | 1 | String getName() {↵
|
2 | return this.userName.toString();↵ | | 2 | return this.name.toString();↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Set this entry's user name.↵ | | 5 | * Set this entry's name.↵
|
6 | *↵ | | 6 | *↵
|
7 | * @param userName This entry's new user name.↵ | | 7 | * @param name This entry's new name.↵
|
8 | */↵ | | 8 | */↵
|
9 | public void setUserName(String userName) {↵ | | 9 | public void setName(String name) {↵
|
10 | this.userName = new StringBuffer(userName)↵ | | 10 | this.name = new StringBuffer(name);↵
|
| | | 11 | }↵
|
|
| | | 12 | /**↵
|
| | | 13 | * Set the mode for this entry↵
|
| | | 14 | *↵
|
| | | 15 | * @param mode the mode for this entry↵
|
| | | 16 | */↵
|
| | | 17 | public void setMode(int mode) {↵
|
11 | ;↵ | | 18 | this.mode = mode;↵
|
12 | }↵ | | 19 | }↵
|
|
13 | /**↵ | | 20 | /**↵
|
14 | * Get this entry's group name.↵ | | 21 | * Get this entry's link name.↵
|
15 | *↵ | | 22 | *↵
|
16 | * @return This entry's group name.↵ | | 23 | * @return This entry's link name.↵
|
17 | */↵ | | 24 | */↵
|
18 | public String getGroupName() {↵ | | 25 | public String getLinkName() {↵
|
19 | return this.groupName.toString();↵ | | 26 | return this.linkName.toString();↵
|
20 | } | | 27 | }
|