com.hp.lft.sdk.java

Class WindowDescription

    • Constructor Detail

      • WindowDescription

        public WindowDescription()
        Initializes a new instance of the WindowDescription class.
      • WindowDescription

        protected WindowDescription(WindowDescription.Init<?> init)
        Initializes a new instance of the WindowDescription class using the Builder pattern.
        Parameters:
        init - the Builder pattern.
    • Method Detail

      • setJavaWindow

        public void setJavaWindow(java.lang.Boolean isJavaWindow)
        Sets whether the object is a Java window.
        Parameters:
        isJavaWindow - true if a Java window.
      • isJavaWindow

        public java.lang.Boolean isJavaWindow()
        Indicates whether the object is a Java window.
        Returns:
        true if is a Java window.
      • setMaximizable

        public void setMaximizable(java.lang.Boolean isMaximizable)
        Sets whether this window can be maximized.
        Parameters:
        isMaximizable - true if can be maximized.
      • isMaximizable

        public java.lang.Boolean isMaximizable()
        Indicates whether this window can be maximized.
        Returns:
        true if can be maximized.
      • setMinimizable

        public void setMinimizable(java.lang.Boolean isMinimizable)
        Set whether this window can be minimized.
        Parameters:
        isMinimizable - true if can be minimized.
      • isMinimizable

        public java.lang.Boolean isMinimizable()
        Indicates whether this window can be minimized.
        Returns:
        true if can be minimized.
      • setResizable

        public void setResizable(java.lang.Boolean isResizable)
        Sets whether this window can be resized.
        Parameters:
        isResizable - true if can be resized.
      • isResizable

        public java.lang.Boolean isResizable()
        Indicates whether this window can be resized.
        Returns:
        true if can be resized.
      • setTitle

        public void setTitle(java.lang.String title)
        Sets the window title.
        Parameters:
        title - the window title.
      • getTitle

        public StringProperty getTitle()
        Returns the window title.
        Returns:
        the window title.