Class RadioGroupElement

    • Constructor Detail

      • RadioGroupElement

        public RadioGroupElement​(java.lang.String variableName,
                                 UC4ObjectName reference)
        Creates a new RadioGroupElement.
        Parameters:
        variableName - Name of the script variable
        reference - Reference
    • Method Detail

      • hasFocus

        public boolean hasFocus()
        Returns true if the focus is set. The cursor is placed at this control if the value is true. It may only be defined for one control in the PromptSet. If this flag is defined for several Controls of a PromptSet the last Control that got the flag wins.
        Specified by:
        hasFocus in interface PromptInterfaces.Focus
        Returns:
        true if the cursor should be set in this Prompt Element, false otherwise
      • setFocus

        public void setFocus​(boolean value)
        Sets the cursor focus: The cursor is placed at this control if the value is true. It may only be defined for one control in the PromptSet. If this flag is defined for several Controls of a PromptSet the last Control that got the flag wins.
        Specified by:
        setFocus in interface PromptInterfaces.Focus
        Parameters:
        value - true if the cursor should be set in this Prompt Element, false otherwise
      • getItemList

        public java.util.List<java.lang.String> getItemList()
        When a Prompt is executed (see request TaskPromptSetContent) this method returns a list of valid items.
        Specified by:
        getItemList in interface PromptInterfaces.ItemList
        Returns:
        List of items
      • isLocked

        public boolean isLocked()
        Returns true if this Prompt Element is locked. In this case a user cannot change the default value in the Prompt-Screen.
        Specified by:
        isLocked in interface PromptInterfaces.Locked
        Overrides:
        isLocked in class PromptElement
        Returns:
        true if locked, false if the user can change the value of the Prompt Element
      • setLocked

        public void setLocked​(boolean locked)
        Lock or unlocks this element. A user cannot change the default value in the Prompt-Screen if a control is locked.
        Specified by:
        setLocked in interface PromptInterfaces.Locked
        Overrides:
        setLocked in class PromptElement
        Parameters:
        locked - true if locked, false if the user can change the value of the Prompt Element
      • setCaption

        public void setCaption​(java.lang.String caption)
        Sets the caption of this prompt element.
        Specified by:
        setCaption in interface PromptInterfaces.Caption
        Parameters:
        caption - Caption
      • setXmlKey

        public void setXmlKey​(java.lang.String key)
        Sets the key in case XML Variables are used as data reference.
        Specified by:
        setXmlKey in interface PromptInterfaces.XmlKey
        Parameters:
        key - Key
      • getXmlKey

        public java.lang.String getXmlKey()
        Returns the key for XML Variables in the data reference.
        Specified by:
        getXmlKey in interface PromptInterfaces.XmlKey
        Returns:
        Key or an empty String if not set.
      • setXPath

        public void setXPath​(java.lang.String xpath)
        Sets the XPath expression if XML variables are used as data reference.
        Specified by:
        setXPath in interface PromptInterfaces.XPath
        Parameters:
        xpath - XPath/Query expression
      • getXPath

        public java.lang.String getXPath()
        Returns the XPath expression if XML variables are used as data reference.
        Specified by:
        getXPath in interface PromptInterfaces.XPath
        Returns:
        XPath/Query expression or an empty String if not set.