Interface TabStripItem


public interface TabStripItem
A single tab item in a SAP NWBC tab strip control.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    dragItem(Object Identifier)
    Performs the 'drag' part of a drag and drop operation on a specific tab.
    void
    dropOnItem(Object Identifier)
    Performs the 'drop' part of a drag and drop operation on a specific tab.
    Returns the identifier of the tab strip item.
    Returns the text representation of the tab strip item.
    void
    Selects this tab from the tab strip.
  • Method Details

    • getIdentifier

      Object getIdentifier()
      Returns the identifier of the tab strip item. The identifier can be the numeric index (0-based) or the name of the tab.
      Returns:
      the identifier of the tab strip item.
    • getTextRepresentation

      String getTextRepresentation() throws GeneralLeanFtException
      Returns the text representation of the tab strip item.
      Returns:
      the text representation of the tab strip item.
      Throws:
      GeneralLeanFtException - if an error occurs during execution.
    • select

      void select() throws GeneralLeanFtException
      Selects this tab from the tab strip.
      Throws:
      GeneralLeanFtException - if an error occurs during execution.
    • dragItem

      void dragItem(Object Identifier) throws GeneralLeanFtException
      Performs the 'drag' part of a drag and drop operation on a specific tab.
      Parameters:
      Identifier - The identifier of the tab to drag. The tab name or numeric index (0-based) can denote the item.
      Throws:
      GeneralLeanFtException
    • dropOnItem

      void dropOnItem(Object Identifier) throws GeneralLeanFtException
      Performs the 'drop' part of a drag and drop operation on a specific tab.
      Parameters:
      Identifier - The identifier of the tab to drop on. The tab name or numeric index (0-based) can denote the item.
      Throws:
      GeneralLeanFtException