public KeywordTabHandler(UiGeneratorController ui) {
    super(ui, true);

    FrontlineSMS frontlineController = ui.getFrontlineController();
    this.keywordDao = frontlineController.getKeywordDao();
    this.groupDao = frontlineController.getGroupDao();
    this.keywordActionDao = frontlineController.getKeywordActionDao();
  }
 public SettingsDeviceSectionHandler(UiGeneratorController ui, SmsModemSettings deviceSettings) {
   super(ui);
   this.smsModemSettingsDao = ui.getFrontlineController().getSmsModemSettingsDao();
   this.setDeviceSettings(deviceSettings);
 }