public String getFirstSecurityNameInTopBuysAndSellsTable() {
   if (getSelectedTab().equals(EQ)) {
     throw new Error(
         "Security names are listed in Top Buy/Sell table "
             + "on Fixed Income sub-tab only. Equity sub-tab contains Company names.");
   }
   return topBuySellTable.getKey(1);
 }
 public String getFirstFiInTopHoldingsTable() {
   selectFixedIncomeTab();
   return topHoldings.getKey(1);
 }
 public String getFirstEquityInTopHoldingsTable() {
   selectEquityTab();
   return topHoldings.getKey(1);
 }