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 Link icon

    • getBooleanSource Link icon

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

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

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

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

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