* @return an "sprints format string", like "Error: %s"
*/
private String getProblemFormat(ICompilerProblem problem)
{
CompilerProblemSeverity severity = problemCategorizer.getProblemSeverity(problem);
CompilerProblemClassification classification = problemCategorizer.getProblemClassification(problem);
String formatString=null;
if (classification == CompilerProblemClassification.DEFAULT)
{
switch(severity)