Interface DockChild

All Superinterfaces:
DockNode
All Known Subinterfaces:
Dockable, DockParent, DockRoot, Track
All Known Implementing Classes:
AbstractDockable, AbstractDockParent, AbstractDockRoot, HBoxTrack, SimpleDockable, SimpleDockRoot, SplitPaneTrack, TabbedAccordionTrack, TabPaneTrack, VBoxTrack

public interface DockChild extends DockNode
Represents a dock item that can be docked to a DockParent.
  • Property Details

    • showing

      @NonNull javafx.beans.property.BooleanProperty showingProperty
      Whether this dock child is showing.

      A dock child that is not showing should not consume CPU resources.

      This property is set by DockParent, for example depending on whether this dockable is in a collapsed pane.

      See Also:
  • Field Details

  • Method Details

    • showingProperty

      @NonNull javafx.beans.property.BooleanProperty showingProperty()
      Whether this dock child is showing.

      A dock child that is not showing should not consume CPU resources.

      This property is set by DockParent, for example depending on whether this dockable is in a collapsed pane.

      Returns:
      true if this dock child is showing.
      See Also:
    • isShowing

      default boolean isShowing()
      Gets the value of the showing property.
      Property description:
      Whether this dock child is showing.

      A dock child that is not showing should not consume CPU resources.

      This property is set by DockParent, for example depending on whether this dockable is in a collapsed pane.

      Returns:
      the value of the showing property
      See Also:
    • setShowing

      default void setShowing(boolean newValue)
      Sets the value of the showing property.
      Property description:
      Whether this dock child is showing.

      A dock child that is not showing should not consume CPU resources.

      This property is set by DockParent, for example depending on whether this dockable is in a collapsed pane.

      Parameters:
      newValue - the value for the showing property
      See Also: