Class SplitWindow

All Implemented Interfaces:
ImageObserver, MenuContainer, Serializable, Accessible

public class SplitWindow extends DockingWindow
A window with a split pane that contains two child windows.
See Also:
  • Constructor Details

    • SplitWindow

      public SplitWindow(boolean horizontal)
      Creates a split window.
      Parameters:
      horizontal - true if the split is horizontal
    • SplitWindow

      public SplitWindow(boolean horizontal, DockingWindow leftWindow, DockingWindow rightWindow)
      Creates a split window with with the given child windows.
      Parameters:
      horizontal - true if the split is horizontal
      leftWindow - the left/upper window
      rightWindow - the right/lower window
    • SplitWindow

      public SplitWindow(boolean horizontal, float dividerLocation, DockingWindow leftWindow, DockingWindow rightWindow)
      Creates a split window with with the given child windows.
      Parameters:
      horizontal - true if the split is horizontal
      dividerLocation - the divider location, 0 - 1
      leftWindow - the left/upper window
      rightWindow - the right/lower window
    • SplitWindow

      protected SplitWindow(boolean horizontal, float dividerLocation, DockingWindow leftWindow, DockingWindow rightWindow, SplitWindowItem windowItem)
  • Method Details