com.hp.lft.sdk.web

Class ImageDescription.Init<T extends ImageDescription.Init<T>>

    • Constructor Detail

      • Init

        protected Init()
    • Method Detail

      • alt

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

        public T alt(StringProperty alt)
        Initializes the image's tooltip text.
        Parameters:
        alt - a StringProperty(or RegExpProperty) representing the image's tooltip text.
        Returns:
        the description instance with the update state (builder pattern).
      • src

        public T src(java.lang.String src)
        Initializes the image source in URL format.
        Parameters:
        src - the image source in URL format.
        Returns:
        the description instance with the update state (builder pattern).
      • src

        public T src(StringProperty src)
        Initializes the image source in URL format.
        Parameters:
        src - a StringProperty(or RegExpProperty) representing the image source in URL format.
        Returns:
        the description instance with the update state (builder pattern).
      • target

        public T target(java.lang.String target)
        Initializes the name of the frame to navigate when user clicks on the frame.
        Parameters:
        target - the name of the frame to navigate when user clicks on the frame.
        Returns:
        the description instance with the update state (builder pattern).
      • target

        public T target(StringProperty target)
        Initializes the name of the frame to navigate when user clicks on the frame.
        Parameters:
        target - a StringProperty(or RegExpProperty) representing the name of the frame to navigate when user clicks on the frame.
        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).
      • type

        public T type(ImageType type)
        Initializes the image type.
        Parameters:
        type - the image type.
        Returns:
        the description instance with the update state (builder pattern).