com.hp.lft.sdk.web

Class LinkDescription.Init<T extends LinkDescription.Init<T>>

    • Constructor Detail

      • Init

        protected Init()
    • Method Detail

      • target

        public T target(java.lang.String target)
        Initializes the name of the frame to navigate to when the user clicks on the frame.
        Parameters:
        target - the name of the frame. Possible values: Any valid HTML target attribute value, for example, framename, _blank, or _self.
        Returns:
        the description instance with the update state (builder pattern).
      • target

        public T target(StringProperty target)
        Initializes the name of the frame to navigate to when the user clicks on the frame.
        Parameters:
        target - a StringProperty(or RegExpProperty) representing the name of the target frame of the navigation. Possible values: Any valid HTML target attribute value, for example, framename, _blank, or _self.
        Returns:
        the description instance with the update state (builder pattern).
      • fontName

        public T fontName(java.lang.String fontName)
        Initializes the link's font.
        Parameters:
        fontName - the font name.
        Returns:
        the description instance with the update state (builder pattern).
      • fontName

        public T fontName(StringProperty fontName)
        Initializes the link's font.
        Parameters:
        fontName - a StringProperty(or RegExpProperty) representing the font name.
        Returns:
        the description instance with the update state (builder pattern).
      • href

        public T href(java.lang.String href)
        Initializes the location to which the browser navigates when the image is clicked.
        Parameters:
        href - the location to which the browser navigates when the image is clicked.
        Returns:
        the description instance with the update state (builder pattern).
      • href

        public T href(StringProperty href)
        Initializes the location to which the browser navigates when the image is clicked.
        Parameters:
        href - a StringProperty(or RegExpProperty) representing the location to which the browser navigates when the image is clicked.
        Returns:
        the description instance with the update state (builder pattern).
      • color

        public T color(java.lang.String color)
        Initializes the link's color.
        Parameters:
        color - the link's color.
        Returns:
        the description instance with the update state (builder pattern).
      • color

        public T color(StringProperty color)
        Initializes the link's color.
        Parameters:
        color - a StringProperty(or RegExpProperty) representing the link's color.
        Returns:
        the description instance with the update state (builder pattern).
      • backgroundColor

        public T backgroundColor(java.lang.String backgroundColor)
        Initializes the link's background color.
        Parameters:
        backgroundColor - the link's background color.
        Returns:
        the description instance with the update state (builder pattern).
      • backgroundColor

        public T backgroundColor(StringProperty backgroundColor)
        Initializes the link's background color.
        Parameters:
        backgroundColor - a StringProperty(or RegExpProperty) representing the link's background color.
        Returns:
        the description instance with the update state (builder pattern).