in src/main/java/org/apache/maven/plugins/issues/AbstractIssuesReportGenerator.java [165:201]
protected void sinkShowTypeIcon( Sink sink, String type )
{
String image = "";
String altText = "";
if ( type == null )
{
image = "images/icon_help_sml.gif";
altText = "Unknown";
}
else if ( type.equals( "fix" ) )
{
image = "images/fix.gif";
altText = "Fix";
}
else if ( type.equals( "update" ) )
{
image = "images/update.gif";
altText = "Update";
}
else if ( type.equals( "add" ) )
{
image = "images/add.gif";
altText = "Add";
}
else if ( type.equals( "remove" ) )
{
image = "images/remove.gif";
altText = "Remove";
}
sink.tableCell();
sinkFigure( sink, image, altText );
sink.tableCell_();
}