Interface IUIBooleanSelection

All Superinterfaces:
IUISelection
All Known Implementing Classes:
BooleanSelection, RadioSelection

public interface IUIBooleanSelection extends IUISelection
The boolean selection is used for components that can be selected or unselected, e.g. a radio button.
Author:
Christopher Mindus
  • Method Details

    • getBooleanSource

      IUIBooleanSelectionComp getBooleanSource()
      Get the source component of the event.
      Returns:
      The check-type component.
    • isSelected

      boolean isSelected()
      Returns the selection state.
      Returns:
      true if selected, false if unselected.
    • isUnselected

      boolean isUnselected()
      Returns if the selection is not set.
      Returns:
      true if unselected, false if selected.
    • isON

      boolean isON()
      Returns if the selection is "on".
      Returns:
      true if on, false if off.
    • isOFF

      boolean isOFF()
      Returns if the selection is "off".
      Returns:
      true if off, false if on.