- java.lang.Object
-
- impl.org.controlsfx.skin.AutoCompletePopupSkin<T>
-
- All Implemented Interfaces:
Skin<AutoCompletePopup<T>>
public class AutoCompletePopupSkin<T> extends Object implements Skin<AutoCompletePopup<T>>
-
-
Constructor Summary
Constructors Constructor Description AutoCompletePopupSkin(AutoCompletePopup<T> control)
AutoCompletePopupSkin(AutoCompletePopup<T> control, Callback<ListView<T>,ListCell<T>> cellFactory)
AutoCompletePopupSkin(AutoCompletePopup<T> control, StringConverter<T> displayConverter)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
dispose()
Node
getNode()
AutoCompletePopup<T>
getSkinnable()
-
-
-
Constructor Detail
-
AutoCompletePopupSkin
public AutoCompletePopupSkin(AutoCompletePopup<T> control)
-
AutoCompletePopupSkin
public AutoCompletePopupSkin(AutoCompletePopup<T> control, StringConverter<T> displayConverter)
- Parameters:
control
- The popup to be skinneddisplayConverter
- An alternateStringConverter
to use. This way, you can show autocomplete suggestions that when applied will fill in a different text than displayed. For example, you may previewFiles.newBufferedReader(Path: path) - Bufferedreader
but only fill inFiles.newBufferedReader(
-
-