276277278279280281282
int quickFixIndex = quickFixTable.indexOf(quickFixName); if (quickFixIndex >= 0) { applyQuickFix(quickFixTable, quickFixIndex); return; } throw new QuickFixNotFoundException("Quickfix options not found. Giving up."); }
290291292293294295296297
*/ protected SWTBotTable getQuickFixTable(SWTBotShell quickFixShell) throws QuickFixNotFoundException { try { return bot.table(quickFixShell); } catch (Exception e) { throw new QuickFixNotFoundException("Quickfix options not found. Giving up.", e); } }
347348349350351352353354
shell.activate(); if (log.isDebugEnabled()) log.debug("Activated quickfix shell."); return shell; } catch (Exception e) { throw new QuickFixNotFoundException("Quickfix popup not found. Giving up.", e); } }
231232233234235236237
245246247248249250251252
302303304305306307308309