Interface InfoPopupSupported

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 InfoPopupSupported
Controls that support info popups must implement this interface.
Author:
harald
  • Method Summary

    Modifier and Type
    Method
    Description
    Gets the info message.
    void
    Hides the info popup if shown.
    void
    Sets the info message.
    Notice that an empty string will set the style but does not show any popup.
    void
    Shows the info popup.
    Requires the info message set.
  • Method Details

    • getInfo

      String getInfo()
      Gets the info message.
      Returns:
      the message, null if no info
    • setInfo

      void setInfo(String info)
      Sets the info message.
      Notice that an empty string will set the style but does 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.