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