src/main/kotlin/de/uapcore/lightpit/dao/AbstractIssueDao.kt

changeset 164
003b08bb3f25
parent 159
86b5d8a1662f
equal deleted inserted replaced
163:a5b9632729b6 164:003b08bb3f25
72 abstract fun listComments(issue: Issue): List<IssueComment> 72 abstract fun listComments(issue: Issue): List<IssueComment>
73 73
74 /** 74 /**
75 * Stores the specified comment in database. 75 * Stores the specified comment in database.
76 * This is an update-or-insert operation. 76 * This is an update-or-insert operation.
77 * The "updated" date of the corresponding issue is also updated.
77 * 78 *
78 * @param issue the issue to save the comment for 79 * @param issue the issue to save the comment for
79 * @param comment the comment to save 80 * @param comment the comment to save
80 */ 81 */
81 abstract fun saveComment(issue: Issue, comment: IssueComment) 82 abstract fun saveComment(issue: Issue, comment: IssueComment)

mercurial