Class IconTool
java.lang.Object
org.apache.maven.plugins.checkstyle.IconTool
A little tool to deal with info/warning/error icons in Checkstyle reports, with eventual text.
- Since:
- 2.13
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final ResourceBundlestatic final Stringstatic final Stringstatic final intprivate final org.apache.maven.doxia.sink.Sinkstatic final intstatic final intstatic final intstatic final String -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidRender an error icon.voidiconError(int textType) Render an error icon with associated text.voidiconInfo()Render an info icon.voidiconInfo(int textType) Render an info icon with associated text.voidiconSeverity(String level) Render a simple icon of given level.voidiconSeverity(String level, int textType) Render an icon of given level with associated text.voidRender a warning icon.voidiconWarning(int textType) Render a warning icon with associated text.private Stringsuffix(int textType)
-
Field Details
-
INFO
- See Also:
-
WARNING
- See Also:
-
ERROR
- See Also:
-
NO_TEXT
public static final int NO_TEXT- See Also:
-
TEXT_SIMPLE
public static final int TEXT_SIMPLE- See Also:
-
TEXT_TITLE
public static final int TEXT_TITLE- See Also:
-
TEXT_ABBREV
public static final int TEXT_ABBREV- See Also:
-
sink
private final org.apache.maven.doxia.sink.Sink sink -
bundle
-
-
Constructor Details
-
IconTool
-
-
Method Details
-
iconSeverity
Render a simple icon of given level.- Parameters:
level- one ofINFO,WARNINGorERRORconstants
-
iconSeverity
Render an icon of given level with associated text.- Parameters:
level- one ofINFO,WARNINGorERRORconstantstextType- one ofNO_TEXT,TEXT_SIMPLE,TEXT_TITLEorTEXT_ABBREVconstants
-
iconInfo
public void iconInfo()Render an info icon. -
iconInfo
public void iconInfo(int textType) Render an info icon with associated text.- Parameters:
textType- one ofNO_TEXT,TEXT_SIMPLE,TEXT_TITLEorTEXT_ABBREVconstants
-
iconWarning
public void iconWarning()Render a warning icon. -
iconWarning
public void iconWarning(int textType) Render a warning icon with associated text.- Parameters:
textType- one ofNO_TEXT,TEXT_SIMPLE,TEXT_TITLEorTEXT_ABBREVconstants
-
iconError
public void iconError()Render an error icon. -
iconError
public void iconError(int textType) Render an error icon with associated text.- Parameters:
textType- one ofNO_TEXT,TEXT_SIMPLE,TEXT_TITLEorTEXT_ABBREVconstants
-
suffix
-