Class SyntheticObservableListChange.Replace<T>

    • Constructor Detail

      • Replace

        public Replace​(List<? extends T> pOld,
                       javafx.collections.ObservableList<? extends T> pNew)
      • Replace

        public Replace​(int pFrom,
                       int pTo,
                       List<? extends T> pRemoved,
                       javafx.collections.ObservableList<? extends T> pSrc)
        Parameters:
        pFrom - Index at which replace occurred.
        pTo - Index to which replace occurs
        pRemoved - Removed items.
        pSrc - Source list.
    • Method Detail

      • getTo

        public int getTo()
        Specified by:
        getTo in class javafx.collections.ListChangeListener.Change<T>
      • getRemoved

        public List<T> getRemoved()
        Specified by:
        getRemoved in class javafx.collections.ListChangeListener.Change<T>
      • getPermutation

        protected int[] getPermutation()
        Specified by:
        getPermutation in class javafx.collections.ListChangeListener.Change<T>