edu.umd.cs.findbugs
public class BugCategory extends Object implements Comparable<BugCategory>
Constructor Summary | |
---|---|
BugCategory(String category, String shortDescription, String abbrev, String detailText)
Constructor.
| |
BugCategory(String category, String shortDescription)
Constructor.
|
Method Summary | |
---|---|
int | compareTo(BugCategory other) |
String | getAbbrev()
Get the abbreviation (usually a single capital letter).
|
String | getCategory()
Get the category. |
String | getDetailText()
Get the detail text describing the category.
note: no HTML markup allowed, may be null |
String | getShortDescription()
Get the short description (usually a word or three) |
void | setAbbrev(String abbrev)
Set the abbreviation (typically a single capital letter) |
void | setDetailText(String detailText)
Set the detail text describing the category.
note: no HTML markup allowed, may be null |
Parameters: category the category shortDescription short (a word or three) description of the bug species abbrev the abbreviation (typically a single capital letter) detailText full description of the bug category (no HTML markup, may be null)
Parameters: category the category shortDescription short (a word or three) description of the bug species