Class FieldPanelCoordinator

    • Constructor Summary

      Constructors 
      Constructor Description
      FieldPanelCoordinator​(FieldPanel[] panels)
      Constructs a new FieldPanelCoordinatro to synchronize the scrolling of the given field panels.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void add​(FieldPanel fp)
      Adds the given field panel to the list of panels to synchronize.
      void dispose()
      Cleans up resources.
      void remove​(FieldPanel fp)
      Removes the given field panel from the list to be synchronized.
      void viewChanged​(FieldPanel fp, java.math.BigInteger index, int xPos, int yPos)
      Notifies the listener that the top of the screen has changed position.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • FieldPanelCoordinator

        public FieldPanelCoordinator​(FieldPanel[] panels)
        Constructs a new FieldPanelCoordinatro to synchronize the scrolling of the given field panels.
        Parameters:
        panels - the array of panels to synchronize.
    • Method Detail

      • dispose

        public void dispose()
        Cleans up resources.
      • add

        public void add​(FieldPanel fp)
        Adds the given field panel to the list of panels to synchronize.
        Parameters:
        fp - the field panel to add.
      • remove

        public void remove​(FieldPanel fp)
        Removes the given field panel from the list to be synchronized.
      • viewChanged

        public void viewChanged​(FieldPanel fp,
                                java.math.BigInteger index,
                                int xPos,
                                int yPos)
        Description copied from interface: ViewListener
        Notifies the listener that the top of the screen has changed position.
        Specified by:
        viewChanged in interface ViewListener
        Parameters:
        fp - the field panel whose view changed.
        index - the index of the layout at the top of the screen
        See Also:
        docking.widgets.fieldpanel.listener.ViewListener#viewChanged(docking.widgets.fieldpanel.FieldPanel, int, int)