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

Direct Known Subclasses:
WindowDescription.Builder
Enclosing class:
WindowDescription

protected abstract static class WindowDescription.Init<T extends WindowDescription.Init<T>> extends UiObjectDescriptionBase.Init<T>
  • Constructor Details

    • Init

      protected Init()
  • Method Details

    • build

      public WindowDescription build()
      Description copied from class: DescriptionBase.Init
      Returns the built description instance (builder pattern).
      Overrides:
      build in class DescriptionBase.Init<T extends WindowDescription.Init<T>>
      Returns:
      The built description instance (builder pattern).
    • active

      public T active(Boolean isActive)
      Indicates whether this object is the foreground object
      Parameters:
      isActive - true if foreground object
      Returns:
      the description instance with the update state (builder pattern)
    • border

      public T border(Boolean hasBorder)
      Indicates whether this object has a thin-line border.
      Parameters:
      hasBorder - true if has a thin-line border
      Returns:
      the description instance with the update state (builder pattern)
    • caption

      public T caption(Boolean hasCaption)
      Indicates whether this object has a title bar.
      Parameters:
      hasCaption - true if has a title bar.
      Returns:
      the description instance with the update state (builder pattern)
    • sizebox

      public T sizebox(Boolean hasSizebox)
      Indicates whether this object has a sizing border.
      Parameters:
      hasSizebox - true if has a sizing border
      Returns:
      the description instance with the update state (builder pattern)
    • systemMenu

      public T systemMenu(Boolean hasSystemMenu)
      Indicates whether this object has a window menu on its title bar.
      Parameters:
      hasSystemMenu - true if has a window menu on its title bar
      Returns:
      the description instance with the update state (builder pattern)
    • mdiChildWindow

      public T mdiChildWindow(Boolean isMdiChildWindow)
      Indicates whether this object is a multiple-document interface (MDI) child window.
      Parameters:
      isMdiChildWindow - true if MDI child window
      Returns:
      the description instance with the update state (builder pattern)
    • popupWindow

      public T popupWindow(Boolean isPopupWindow)
      Indicates whether this object is a pop-up window.
      Parameters:
      isPopupWindow - true if pop-up window
      Returns:
      the description instance with the update state (builder pattern)
    • toolWindow

      public T toolWindow(Boolean isToolWindow)
      Indicates whether this object is intended to be a floating toolbar.
      Parameters:
      isToolWindow - true if intended to be floating toolbar
      Returns:
      the description instance with the update state (builder pattern)
    • maximizable

      public T maximizable(Boolean isMaximizable)
      Indicates whether this object can be maximized.
      Parameters:
      isMaximizable - true if can be maximized
      Returns:
      the description instance with the update state (builder pattern)
    • minimizable

      public T minimizable(Boolean isMinimizable)
      Indicates whether this object can be minimized.
      Parameters:
      isMinimizable - true if can be minimized
      Returns:
      the description instance with the update state (builder pattern)
    • topmost

      public T topmost(Boolean isTopmost)
      Indicates whether this object should stay above all non-topmost windows, even when this object is deactivated.
      Parameters:
      isTopmost - true if should stay above all non-topmost windows
      Returns:
      the description instance with the update state (builder pattern)