All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.pcsoft.framework.jfex.controls.util.FXSelectionModelUtils Maven / Gradle / Ivy

The newest version!
package org.pcsoft.framework.jfex.controls.util;

import javafx.scene.control.SelectionModel;


public abstract class FXSelectionModelUtils extends FXUtils {

    protected static  void reselect(final SelectionModel selectionModel) {
        final int selectedIndex = selectionModel.getSelectedIndex();
        selectionModel.select(null);
        selectionModel.select(selectedIndex);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy