List of usage examples for javafx.beans.property SimpleMapProperty SimpleMapProperty
public SimpleMapProperty(ObservableMap<K, V> initialValue)
From source file:io.github.moosbusch.permagon.configuration.builder.spi.AbstractPermagonBuilder.java
public AbstractPermagonBuilder(PermagonApplicationContext applicationContext, Class<?> type, BuilderFactory builderFactory) { this.applicationContext = applicationContext; this.type = type; this.builderFactory = builderFactory; this.properties = new SimpleMapProperty(FXCollections.observableHashMap()); init();// w w w .j av a2s. c o m }