@Override
 public String getText() {
   if (stockPrice != null) {
     return Bank.format(stockPrice.getPrice()) + " (" + stockPrice.getName() + ")";
   }
   return "";
 }