com.hp.lft.sdk.java

Class WindowDescription.Init<T extends WindowDescription.Init<T>>

    • Constructor Detail

      • Init

        protected Init()
    • Method Detail

      • javaWindow

        public T javaWindow(java.lang.Boolean isJavaWindow)
        Initializes whether the object is a Java window.
        Parameters:
        isJavaWindow - sets whether the object is a Java window.
        Returns:
        the description instance with the update state (builder pattern).
      • maximizable

        public T maximizable(java.lang.Boolean isMaximizable)
        Initializes whether this window can be maximized.
        Parameters:
        isMaximizable - sets whether this window can be maximized.
        Returns:
        the description instance with the update state (builder pattern).
      • minimizable

        public T minimizable(java.lang.Boolean isMinimizable)
        Initializes whether this window can be minimized.
        Parameters:
        isMinimizable - sets whether this window can be minimized.
        Returns:
        the description instance with the update state (builder pattern).
      • resizable

        public T resizable(java.lang.Boolean isResizable)
        Initializes whether this window can be resized.
        Parameters:
        isResizable - true if can be resized.
        Returns:
        the description instance with the update state (builder pattern).
      • title

        public T title(java.lang.String title)
        Initializes the window title.
        Parameters:
        title - the window title.
        Returns:
        the description instance with the update state (builder pattern).