public TopicFilteredResultsView() {
    super(
        PressGangCCMSUI.INSTANCE.PressGangCCMS(),
        PressGangCCMSUI.INSTANCE.SearchResults(),
        PressGangCCMSUI.INSTANCE.CreateTopic());

    getResults().addColumn(idColumn, PressGangCCMSUI.INSTANCE.TopicID());
    getResults().addColumn(titleColumn, PressGangCCMSUI.INSTANCE.TopicTitle());

    /* Unlike every other results view, the topic results don't have a search button */
    this.getEntitySearch().removeFromParent();

    addActionButton(bulkImport);
    addActionButton(bulkOverwrite);
    addActionButton(atomFeed);
  }