Class DesignerBindings.AdditionalInfo
- java.lang.Object
-
- net.sourceforge.pmd.util.designerbindings.DesignerBindings.AdditionalInfo
-
- Enclosing interface:
- DesignerBindings
public static class DesignerBindings.AdditionalInfo extends Object
An entry for the "additional info" panel.
-
-
Constructor Summary
Constructors Constructor Description AdditionalInfo(String display)
AdditionalInfo(String sortKey, String display)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDisplayString()
Returns the string displayed to the user.String
getSortKey()
Returns the string used to sort the additional info.
-
-
-
Method Detail
-
getSortKey
public String getSortKey()
Returns the string used to sort the additional info. For example, returning"A"
ensures this is displayed first, provided there's no other entry with an"A"
.
-
getDisplayString
public String getDisplayString()
Returns the string displayed to the user.
-
-