com.hp.lft.sdk.sap.ui5

Interface TabStrip

    • Method Detail

      • getTabs

        java.util.List<java.lang.String> getTabs()
                                          throws GeneralLeanFtException
        Returns the list of all tabs contained in this tabstrip object.
        Returns:
        the list of all tabs contained in this tabstrip object.
        Throws:
        GeneralLeanFtException - if an error occurs during execution.
      • getSelectedTab

        java.lang.String getSelectedTab()
                                 throws GeneralLeanFtException
        Returns the selected tab in the tabstrip object.
        Returns:
        The selected tab in the tabstrip object.
        Throws:
        GeneralLeanFtException - if an error occurs during execution.
      • select

        void select(java.lang.String tab)
             throws GeneralLeanFtException
        Selects the specified tab in the tabstrip object.
        Parameters:
        tab - the tab to select.
        Throws:
        GeneralLeanFtException - if an error occurs during execution.
      • select

        void select(int tabIndex)
             throws GeneralLeanFtException
        Selects the specified tab (by index) in the tabstrip object.
        Parameters:
        tabIndex - the tab index to select (1-based).
        Throws:
        GeneralLeanFtException - if an error occurs during execution.
      • remove

        void remove(java.lang.String tab)
             throws GeneralLeanFtException
        Removes the specified tab from the tabstrip object.
        Parameters:
        tab - the tab to remove.
        Throws:
        GeneralLeanFtException - if an error occurs during execution.
      • remove

        void remove(int tabIndex)
             throws GeneralLeanFtException
        Removes the specified tab (by index) from the tabstrip object.
        Parameters:
        tabIndex - tab index to remove (1-based).
        Throws:
        GeneralLeanFtException - if an error occurs during execution.
      • deselect

        void deselect(java.lang.String tab)
               throws GeneralLeanFtException
        Deselects the specified tab (by name) from the tabstrip object.
        Parameters:
        tab - the tab to deselect.
        Throws:
        GeneralLeanFtException - if an error occurs during execution.
      • deselect

        void deselect(int tabIndex)
               throws GeneralLeanFtException
        Deselects the specified tab (by index) from the tabstrip object.
        Parameters:
        tabIndex - the tab index to deselect (1-based).
        Throws:
        GeneralLeanFtException - if an error occurs during execution.