-
- All Known Subinterfaces:
FxComponent,FxTextComponent
- All Known Implementing Classes:
AbstractTextFieldDelegate,FxButton,FxCheckBox,FxCheckBoxDelegate,FxChoiceBox,FxChoiceBoxDelegate,FxColorPicker,FxColorPickerDelegate,FxComboBox,FxComboBoxDelegate,FxComponentDelegate,FxDatePicker,FxDatePickerDelegate,FxHTMLEditor,FxHTMLEditorDelegate,FxListView,FxListViewDelegate,FxPasswordField,FxPasswordFieldDelegate,FxRadioButton,FxRadioButtonDelegate,FxTableView,FxTableViewDelegate,FxTextArea,FxTextAreaDelegate,FxTextComponentDelegate,FxTextField,FxTextFieldDelegate,FxToggleButton,FxToggleButtonDelegate,FxTreeTableView,FxTreeTableViewDelegate,FxTreeView,FxTreeViewDelegate,TotalsTableView
public interface InfoPopupSupportedControls that support info popups must implement this interface.- Author:
- harald
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetInfo()Gets the info message.voidhideInfoPopup()Hides the info popup if shown.voidsetInfo(java.lang.String info)Sets the info message.
Notice that an empty string will set the style but dows not show any popup.voidshowInfoPopup()Shows the info popup.
Requires the info message set.
-
-
-
Method Detail
-
getInfo
java.lang.String getInfo()
Gets the info message.- Returns:
- the message, null if no info
-
setInfo
void setInfo(java.lang.String info)
Sets the info message.
Notice that an empty string will set the style but dows not show any popup.- Parameters:
info- the info message, null to clear
-
showInfoPopup
void showInfoPopup()
Shows the info popup.
Requires the info message set.
-
hideInfoPopup
void hideInfoPopup()
Hides the info popup if shown.
-
-