Schnittstelle NavigationTab

Alle Superschnittstellen:
ViewerComponent

public interface NavigationTab extends ViewerComponent
A single navigation tab which can be added to the navigation view of the viewer using addNavigationTab. A navigation tab simply needs to implement these methods, and could be any number of things, like a group tree, a search view, an index view, a bookmark view, etc.
Seit:
7.0
Siehe auch:
  • Methodenübersicht

    Modifikator und Typ
    Methode
    Beschreibung
    Returns the name given to this NavigationTab, or null if this NavigationTabnone has no name.
    Returns the RenderData object of this NavigationTab, that is, the source of the report data
    void
    init(RenderData renderData)
    Initializes this navigation tab with the RenderData object needed for the report information
    void
    Reloads the data underlying this navigation tab and renews the display with the new data.
    void
    An error has occurred, deal with it.

    Von Schnittstelle geerbte Methoden ViewerComponent

    getComponent
  • Methodendetails

    • showError

      void showError(Throwable th)
      An error has occurred, deal with it. A typical implementation would pass this error on up to the NavigationView.
      Parameter:
      th - Exception which has occurred.
      Seit:
      7.0
      Siehe auch:
    • getReportData

      RenderData getReportData()
      Returns the RenderData object of this NavigationTab, that is, the source of the report data
      Gibt zurück:
      The RenderData object of this NavigationTab, that is, the source of the report data
      Seit:
      7.0
    • init

      void init(RenderData renderData)
      Initializes this navigation tab with the RenderData object needed for the report information
      Parameter:
      renderData - RenderData object
      Seit:
      7.0
    • reload

      void reload()
      Reloads the data underlying this navigation tab and renews the display with the new data.
      Seit:
      7.0
    • getName

      String getName()
      Returns the name given to this NavigationTab, or null if this NavigationTabnone has no name.
      Gibt zurück:
      Name given to this NavigationTab
      Seit:
      7.0