Package com.hp.lft.sdk.sap.nwbc
Interface TabStripItem
public interface TabStripItem
A single tab item in a SAP NWBC tab strip control.
-
Method Summary
Modifier and TypeMethodDescriptionvoidPerforms the 'drag' part of a drag and drop operation on a specific tab.voiddropOnItem(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.voidselect()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
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
Selects this tab from the tab strip.- Throws:
GeneralLeanFtException- if an error occurs during execution.
-
dragItem
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
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
-