Interface RadioContainer


  • public interface RadioContainer
    A container of Radio components, used to identify the element name used when rendering the individual radio buttons. (All buttons in a group share the same element name.)
    • Method Detail

      • getControlName

        String getControlName()
        Returns the value used as the name attribute of the rendered element. This value will be unique within an enclosing form, even if the same component renders multiple times.
        See Also:
        Field.getControlName()
      • isDisabled

        boolean isDisabled()
        If true, then all radio buttons within the container should be disabled.
      • isSelected

        boolean isSelected(Object value)
        Returns true if the value is the current selected value.