@@ -65,12 +65,13 @@ default void notifyFXChangeProperty(@NotNull Object object, @NotNull String prop
6565 /**
6666 * Notify about added child from FX thread.
6767 *
68- * @param parent the parent
69- * @param added the added
70- * @param index the index
68+ * @param parent the parent.
69+ * @param added the added.
70+ * @param index the index of position.
71+ * @param needSelect true if need to select the child.
7172 */
7273 @ FXThread
73- void notifyFXAddedChild (@ NotNull Object parent , @ NotNull Object added , int index );
74+ void notifyFXAddedChild (@ NotNull Object parent , @ NotNull Object added , int index , boolean needSelect );
7475
7576 /**
7677 * Notify about removed child from FX thread.
@@ -104,11 +105,13 @@ default void notifyFXChangeProperty(@NotNull Object object, @NotNull String prop
104105 /**
105106 * Notify about moved child from FX thread.
106107 *
107- * @param prevParent the prev parent
108- * @param newParent the new parent
109- * @param child the child
110- * @param index the index
108+ * @param prevParent the prev parent.
109+ * @param newParent the new parent.
110+ * @param child the child.
111+ * @param index the index of position.
112+ * @param needSelect true if need select this object.
111113 */
112114 @ FXThread
113- void notifyFXMoved (@ NotNull Node prevParent , @ NotNull Node newParent , @ NotNull Spatial child , int index );
115+ void notifyFXMoved (@ NotNull Node prevParent , @ NotNull Node newParent , @ NotNull Spatial child , int index ,
116+ boolean needSelect );
114117}
0 commit comments