public String generateSectionLabel(final PieDataset dataset, final Comparable key) {
   String temp = null;
   if (dataset != null) {
     temp = key.toString();
     temp = temp.toUpperCase();
   }
   return temp;
 }
 public String generateSectionLabel(final PieDataset dataset, final Comparable key) {
   String temp = null;
   if (dataset != null) {
     temp = key.toString();
     temp =
         temp.toUpperCase()
             + " ("
             + (int) Double.parseDouble((String) vals.get(temp))
             + " = "
             + PERCENT_FORMAT.format(Double.parseDouble((String) vals.get(temp)) * 100 / total)
             + "%)";
   }
   return temp;
 }