src/main/java/de/uapcore/lightpit/dao/IssueDao.java

changeset 105
250c5cbb8276
parent 86
0a658e53177c
child 124
ed2e7aef2a3e
equal deleted inserted replaced
104:8be80ea4f52b 105:250c5cbb8276
48 */ 48 */
49 List<Issue> list(Project project) throws SQLException; 49 List<Issue> list(Project project) throws SQLException;
50 50
51 /** 51 /**
52 * Lists all issues that are somehow related to the specified version. 52 * Lists all issues that are somehow related to the specified version.
53 * If version is null, search for issues that are not related to any version.
53 * 54 *
54 * @param version the version 55 * @param version the version or null
55 * @return a list of issues 56 * @return a list of issues
56 * @throws SQLException on any kind of SQL error 57 * @throws SQLException on any kind of SQL error
57 */ 58 */
58 List<Issue> list(Version version) throws SQLException; 59 List<Issue> list(Version version) throws SQLException;
59 60

mercurial