Class ContentPartPool

  • All Implemented Interfaces:
    IDisposable

    public class ContentPartPool
    extends java.lang.Object
    implements IDisposable
    A temporary store for IContentParts that is used by ContentBehaviors. They will add IContentParts, which are removed from the viewer during content synchronization (e.g. because the related content element was deleted), to be re-used (i.e. removed again and restored within the viewer) when the content element re-appears during synchronization, e.g. because of an undo of a delete operation. The motivation behind recycling IContentParts is that after an undo the viewer is in the exact same state as before the execution of an operation (which may be important for feedback or handles).
    • Constructor Detail

      • ContentPartPool

        public ContentPartPool()
    • Method Detail

      • clear

        public void clear()
        Clears the pool, that is removes all IContentParts.
      • getPooled

        public java.util.Collection<IContentPart<? extends javafx.scene.Node>> getPooled()
        Returns the IContentPart's that are contained in this pool.
        Returns:
        The IContentParts that are currently contained in this pool.
      • remove

        public IContentPart<? extends javafx.scene.Node> remove​(java.lang.Object content)
        Retrieves an IContentPart for the given content element and removes it from the pool.
        Parameters:
        content - The IContentPart that was registered for the content element, or null if no IContentPart could be retrieved for the content element.
        Returns:
        The part that was retrieved for the given content element, or null if none could be found.