Interface Picker<T>

All Known Implementing Classes:
AbstractPicker, BooleanPicker, CssColorPicker, CssFontPicker, EnumPicker, ExamplesPicker, FontFamilyPicker, PaintablePicker

public interface Picker<T>
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    show(javafx.scene.Node anchor, double screenX, double screenY, T initialValue, BiConsumer<Boolean,T> callback)
     
  • Method Details

    • show

      void show(javafx.scene.Node anchor, double screenX, double screenY, T initialValue, BiConsumer<Boolean,T> callback)
      Parameters:
      anchor - anchor node will be blocked by the picker
      screenX - desired screen coordinate
      screenY - desired screen coordinate
      initialValue - initial value
      callback - callback when a value was selected (true), or reset to the initial value (false).