Class RadioButton

java.lang.Object
com.independentsoft.office.odf.forms.Control
com.independentsoft.office.odf.forms.RadioButton
All Implemented Interfaces:
IFormContent, IContentElement

public class RadioButton extends Control
Defines a control which acts like a check box except that when multiple radio buttons belong to the same group they are mutually exclusive.
  • Constructor Details

    • RadioButton

      public RadioButton()
      Initializes a new instance of the RadioButton class.
  • Method Details

    • getContentElements

      public List<IContentElement> getContentElements()
      Returns all content elements.
      Specified by:
      getContentElements in interface IContentElement
      Specified by:
      getContentElements in class Control
      Returns:
      A collection of content elements.
    • getParent

      public IContentElement getParent()
      Returns the parent content element.
      Specified by:
      getParent in interface IContentElement
      Overrides:
      getParent in class Control
      Returns:
      the parent
    • setParent

      public void setParent(IContentElement parent)
      Sets the parent content element.
      Specified by:
      setParent in interface IContentElement
      Overrides:
      setParent in class Control
      Parameters:
      parent - the new parent
    • clone

      public RadioButton clone()
      Creates a new object that is a deep copy of the current instance.
      Specified by:
      clone in interface IContentElement
      Specified by:
      clone in interface IFormContent
      Specified by:
      clone in class Control
      Returns:
      A new object that is a copy of this instance.
    • toString

      public String toString()
      Converts the value of the current RadioButton object to its equivalent string representation.
      Overrides:
      toString in class Object
      Returns:
      the string
    • getName

      public String getName()
      Gets the name of a form or control element.
      Returns:
      the name
    • setName

      public void setName(String name)
      Sets the name of a form or control element.
      Parameters:
      name - the new name
    • getControlImplementation

      public String getControlImplementation()
      Gets the specific concrete rendition or implementation of a control that should be instantiated.
      Returns:
      the control implementation
    • setControlImplementation

      public void setControlImplementation(String controlImplementation)
      Sets the specific concrete rendition or implementation of a control that should be instantiated.
      Parameters:
      controlImplementation - the new control implementation
    • getID

      public String getID()
      Gets an identifier for a control element.
      Returns:
      the id
    • setID

      public void setID(String id)
      Sets an identifier for a control element.
      Parameters:
      id - the new id
    • getValue

      public String getValue()
      Gets the default value of an input control.
      Returns:
      the value
    • setValue

      public void setValue(String value)
      Sets the default value of an input control.
      Parameters:
      value - the new value
    • isDisabled

      public boolean isDisabled()
      Specifies whether a control can accept user input.
      Returns:
      true, if is disabled
    • setDisabled

      public void setDisabled(boolean isDisabled)
      Specifies whether a control can accept user input.
      Parameters:
      isDisabled - the new disabled
    • isPrintable

      public boolean isPrintable()
      Specifies whether a control is printed when a user prints a document in which the control is contained.
      Returns:
      true, if is printable
    • setPrintable

      public void setPrintable(boolean isPrintable)
      Specifies whether a control is printed when a user prints a document in which the control is contained.
      Parameters:
      isPrintable - the new printable
    • getTabIndex

      public int getTabIndex()
      Gets tabbing navigation order of controls within a form.
      Returns:
      the tab index
    • setTabIndex

      public void setTabIndex(int tabIndex)
      Sets tabbing navigation order of controls within a form.
      Parameters:
      tabIndex - the new tab index
    • isEnableTabbingNavigation

      public boolean isEnableTabbingNavigation()
      Specifies whether a control is included in the tabbing navigation order. The defined values are: -false: control is not included in tabbing navigation order. -true: control is included in tabbing navigation order.
      Returns:
      true, if is enable tabbing navigation
    • setEnableTabbingNavigation

      public void setEnableTabbingNavigation(boolean enableTabbingNavigation)
      Specifies whether a control is included in the tabbing navigation order. The defined values are: -false: control is not included in tabbing navigation order. -true: control is included in tabbing navigation order.
      Parameters:
      enableTabbingNavigation - the new enable tabbing navigation
    • getTitle

      public String getTitle()
      Gets additional information about a control.
      Returns:
      the title
    • setTitle

      public void setTitle(String title)
      Sets additional information about a control.
      Parameters:
      title - the new title
    • getDataField

      public String getDataField()
      Specifies the name of a column in the result set defined by a (data-aware) form. A control interchanges content with its column when: -the current row of a form changes, the control is initialized with the value from its column. -the user changes the content of a control, this changed value is written back to its column.
      Returns:
      the data field
    • setDataField

      public void setDataField(String dataField)
      Specifies the name of a column in the result set defined by a (data-aware) form. A control interchanges content with its column when: -the current row of a form changes, the control is initialized with the value from its column. -the user changes the content of a control, this changed value is written back to its column.
      Parameters:
      dataField - the new data field
    • isCurrentSelected

      public boolean isCurrentSelected()
      Specifies the state of a radio button or option element.
      Returns:
      true, if is current selected
    • setCurrentSelected

      public void setCurrentSelected(boolean isCurrentSelected)
      Specifies the state of a radio button or option element.
      Parameters:
      isCurrentSelected - the new current selected
    • isSelected

      public boolean isSelected()
      Specifies the default state of a radio button or option. A control initializes to the default state specified by this attribute.
      Returns:
      true, if is selected
    • setSelected

      public void setSelected(boolean isSelected)
      Specifies the default state of a radio button or option. A control initializes to the default state specified by this attribute.
      Parameters:
      isSelected - the new selected
    • getLabel

      public String getLabel()
      Gets the text for a control.
      Returns:
      the label
    • setLabel

      public void setLabel(String label)
      Sets the text for a control.
      Parameters:
      label - the new label
    • getVisualEffect

      public VisualEffect getVisualEffect()
      Gets the visual effect to apply to a control.
      Returns:
      the visual effect
    • setVisualEffect

      public void setVisualEffect(VisualEffect visualEffect)
      Sets the visual effect to apply to a control.
      Parameters:
      visualEffect - the new visual effect
    • getImagePosition

      public ImagePosition getImagePosition()
      Gets the location of an image relative to the text of a control.
      Returns:
      the image position
    • setImagePosition

      public void setImagePosition(ImagePosition imagePosition)
      Sets the location of an image relative to the text of a control.
      Parameters:
      imagePosition - the new image position
    • getImageAlignment

      public ImageAlignment getImageAlignment()
      Specifies which border (start, end) or axis (center) of an image and a text are to be aligned.
      Returns:
      the image alignment
    • setImageAlignment

      public void setImageAlignment(ImageAlignment imageAlignment)
      Specifies which border (start, end) or axis (center) of an image and a text are to be aligned.
      Parameters:
      imageAlignment - the new image alignment