Uses of Class
com.dlsc.gemsfx.util.HistoryManager
Packages that use HistoryManager
-
Uses of HistoryManager in com.dlsc.gemsfx
Methods in com.dlsc.gemsfx that return HistoryManagerModifier and TypeMethodDescriptionfinal HistoryManager<T> HistoryButton.getHistoryManager()Gets the value of thehistoryManagerproperty.final HistoryManager<String> SearchField.getHistoryManager()Gets the value of thehistoryManagerproperty.final HistoryManager<String> SearchTextField.getHistoryManager()Gets the value of thehistoryManagerproperty.Methods in com.dlsc.gemsfx that return types with arguments of type HistoryManagerModifier and TypeMethodDescriptionfinal javafx.beans.property.ObjectProperty<HistoryManager<T>> HistoryButton.historyManagerProperty()The history manager that is used for persisting the history of the button.final javafx.beans.property.ObjectProperty<HistoryManager<String>> SearchField.historyManagerProperty()The history manager that is used to manage the history of the SearchField.final javafx.beans.property.ObjectProperty<HistoryManager<String>> SearchTextField.historyManagerProperty()The history manager that is used to manage the history of the search text field.Methods in com.dlsc.gemsfx with parameters of type HistoryManagerModifier and TypeMethodDescriptionfinal voidHistoryButton.setHistoryManager(HistoryManager<T> historyManager) Sets the value of thehistoryManagerproperty.final voidSearchField.setHistoryManager(HistoryManager<String> historyManager) Sets the value of thehistoryManagerproperty.final voidSearchTextField.setHistoryManager(HistoryManager<String> historyManager) Sets the value of thehistoryManagerproperty. -
Uses of HistoryManager in com.dlsc.gemsfx.util
Subclasses of HistoryManager in com.dlsc.gemsfx.utilModifier and TypeClassDescriptionclassA simple history manager that does not persist its items anywhere.classManages a history of items of type T, storing them in a Java Preferences backend.classManages a history of string records using the Java Preferences API.