Class FindBugsParser.XmlBugInstance
- java.lang.Object
-
- edu.hm.hafner.analysis.parser.findbugs.FindBugsParser.XmlBugInstance
-
- Enclosing class:
- FindBugsParser
public static class FindBugsParser.XmlBugInstance extends Object
Java Bean to create the mapping of hash codes to messages using the Digester XML parser.- Author:
- Ullrich Hafner
-
-
Constructor Summary
Constructors Constructor Description XmlBugInstance()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCategory()StringgetInstanceHash()StringgetMessage()StringgetType()voidsetCategory(String category)voidsetInstanceHash(String instanceHash)voidsetMessage(String message)voidsetType(String type)
-
-
-
Method Detail
-
getInstanceHash
@CheckForNull public String getInstanceHash()
-
setInstanceHash
public void setInstanceHash(String instanceHash)
-
getMessage
@CheckForNull public String getMessage()
-
setMessage
public void setMessage(String message)
-
getType
@CheckForNull public String getType()
-
setType
public void setType(String type)
-
getCategory
@CheckForNull public String getCategory()
-
setCategory
public void setCategory(String category)
-
-