1 | public void setComment(String comment) {↵ | | 1 | public void setComment(String comment) {↵
|
2 | mComment = comment;↵ | | 2 | mComment = comment;↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Get comment string↵ | | 5 | * Get comment string↵
|
6 | *↵ | | 6 | *↵
|
7 | * @return String containing the comment↵ | | 7 | * @return String containing the comment↵
|
8 | */↵ | | 8 | */↵
|
9 | public String getComment() {↵ | | 9 | public String getComment() {↵
|
10 | return mComment;↵ | | 10 | return mComment;↵
|
11 | }↵ | | 11 | }↵
|
|
12 | /**↵ | | 12 | /**↵
|
13 | * Set comment file↵ | | 13 | * Set comment file↵
|
14 | *↵ | | 14 | *↵
|
15 | * @param cfile the path to the comment file↵ | | 15 | * @param cfile the path to the comment file↵
|
16 | */↵ | | 16 | */↵
|
17 | public void setCommentFile(String cfile) {↵ | | 17 | public void setCommentFile(String cfile) {↵
|
18 | mCfile = cfile;↵ | | 18 | mCfile = cfile;↵
|
19 | }↵ | | 19 | }↵
|
|
20 | /**↵ | | 20 | /**↵
|
21 | * Get comment file↵ | | 21 | * Get comment file↵
|
22 | *↵ | | 22 | *↵
|
23 | * @return String containing the path to the comment file↵ | | 23 | * @return String containing the path to the comment file↵
|
24 | */↵ | | 24 | */↵
|
25 | public String getCommentFile() {↵ | | 25 | public String getCommentFile() {↵
|
26 | return mCfile | | 26 | return mCfile
|