public interface MultiPanel
Modifier and Type | Method and Description |
---|---|
Control |
addItem(Control item,
String tabName,
String longName)
This adds a control to the MultiPanel with a specified short (Tab) name and
optional long name.
|
int |
getItemCount()
This returns the number of items added to the MultiPanel.
|
int |
getSelectedItem()
This returns the index for the currently selected item.
|
void |
select(Control item)
This selects for display one of the previously added Controls.
|
void |
select(int index)
This selects for display one of the previously added Controls, given the
index of the item.
|
void |
select(String tabName)
This selects for display one of the previously added Controls, given the
short (tab) name for the item.
|
Control addItem(Control item, String tabName, String longName)
void select(Control item)
void select(String tabName)
void select(int index)
int getSelectedItem()
int getItemCount()