| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| Bugzilla |
|
| 1.0;1 |
| 1 | package net.sf.statcvs.weblinks.bugs; | |
| 2 | ||
| 3 | /** | |
| 4 | * Implements support for the Bugzilla bug tracker. | |
| 5 | * | |
| 6 | * @author Richard Cyganiak (richard@cyganiak.de) | |
| 7 | * @version $Id: Bugzilla.java,v 1.3 2008/04/02 11:22:15 benoitx Exp $ | |
| 8 | */ | |
| 9 | public class Bugzilla extends BugTracker { | |
| 10 | ||
| 11 | public Bugzilla(final String baseURL) { | |
| 12 | 0 | super(baseURL); |
| 13 | 0 | } |
| 14 | ||
| 15 | public String getName() { | |
| 16 | 0 | return "Bugzilla"; |
| 17 | } | |
| 18 | ||
| 19 | public String bugURL(final String bugNumber) { | |
| 20 | 0 | return baseURL() + "show_bug.cgi?id=" + bugNumber; |
| 21 | } | |
| 22 | } |