Class FindBugsMessages.Pattern
- java.lang.Object
-
- edu.hm.hafner.analysis.parser.findbugs.FindBugsMessages.Pattern
-
- Enclosing class:
- FindBugsMessages
public static class FindBugsMessages.Pattern extends Object
Bug pattern describing a bug type.- Author:
- Ullrich Hafner
-
-
Constructor Summary
Constructors Constructor Description Pattern()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()Returns the description.StringgetShortDescription()Returns the shortDescription.StringgetType()Returns the type.voidsetDescription(String description)Sets the description to the specified value.voidsetShortDescription(String shortDescription)Sets the shortDescription to the specified value.voidsetType(String type)Sets the type to the specified value.
-
-
-
Method Detail
-
getType
public String getType()
Returns the type.- Returns:
- the type
-
setType
public void setType(@CheckForNull String type)Sets the type to the specified value.- Parameters:
type- the value to set
-
getDescription
public String getDescription()
Returns the description.- Returns:
- the description
-
setDescription
public void setDescription(@CheckForNull String description)Sets the description to the specified value.- Parameters:
description- the value to set
-
getShortDescription
public String getShortDescription()
Returns the shortDescription.- Returns:
- the shortDescription
-
setShortDescription
public void setShortDescription(@CheckForNull String shortDescription)Sets the shortDescription to the specified value.- Parameters:
shortDescription- the value to set
-
-