Uses of Class
org.controlsfx.control.WorldMapView.Country
-
Packages that use WorldMapView.Country Package Description org.controlsfx.control A package containing a number of useful controls-related classes that do not exist in the base JavaFX distribution. -
-
Uses of WorldMapView.Country in org.controlsfx.control
Methods in org.controlsfx.control that return WorldMapView.Country Modifier and Type Method Description WorldMapView.Country
WorldMapView.CountryView. getCountry()
static WorldMapView.Country
WorldMapView.Country. valueOf(String name)
Returns the enum constant of this type with the specified name.static WorldMapView.Country[]
WorldMapView.Country. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.controlsfx.control that return types with arguments of type WorldMapView.Country Modifier and Type Method Description javafx.beans.property.ListProperty<WorldMapView.Country>
WorldMapView. countriesProperty()
A property used to store the list of countries that should be shown by the map.javafx.beans.property.ObjectProperty<javafx.util.Callback<WorldMapView.Country,WorldMapView.CountryView>>
WorldMapView. countryViewFactoryProperty()
A property used to store a factory callback for creating new country views.javafx.collections.ObservableList<WorldMapView.Country>
WorldMapView. getCountries()
Returns the list of countries that will be shown by the map.javafx.util.Callback<WorldMapView.Country,WorldMapView.CountryView>
WorldMapView. getCountryViewFactory()
Returns the value ofWorldMapView.countryViewFactoryProperty()
.javafx.collections.ObservableList<WorldMapView.Country>
WorldMapView. getSelectedCountries()
Returns the list of currently selected countries.javafx.beans.property.ListProperty<WorldMapView.Country>
WorldMapView. selectedCountriesProperty()
A property used for storing the list of selected countries (aka "the selection model").Method parameters in org.controlsfx.control with type arguments of type WorldMapView.Country Modifier and Type Method Description void
WorldMapView. setCountries(javafx.collections.ObservableList<WorldMapView.Country> countries)
Sets the list of countries that will be shown by the map.void
WorldMapView. setCountryViewFactory(javafx.util.Callback<WorldMapView.Country,WorldMapView.CountryView> factory)
Sets the value ofWorldMapView.countryViewFactoryProperty()
.void
WorldMapView. setSelectedCountries(javafx.collections.ObservableList<WorldMapView.Country> countries)
Sets the list of currently selected countries.Constructors in org.controlsfx.control with parameters of type WorldMapView.Country Constructor Description CountryView(WorldMapView.Country country)
-