{
//*-- get the ScoredObject to fetch the score and tags
ScoredObject tagScores = (ScoredObject) nBestIt.next();
//*-- format the score
double score = tagScores.score();
String f_score = Strings.decimalFormat(score, "#,##0.000", 9);
StringBuffer sb = new StringBuffer(); sb.append(StringTools.fillin(f_score, 15, true, ' '));
//*-- format the tags
String[] tags = (String[]) tagScores.getObject();