Example usage for javafx.beans.property SimpleMapProperty SimpleMapProperty

List of usage examples for javafx.beans.property SimpleMapProperty SimpleMapProperty

Introduction

In this page you can find the example usage for javafx.beans.property SimpleMapProperty SimpleMapProperty.

Prototype

public SimpleMapProperty(ObservableMap<K, V> initialValue) 

Source Link

Document

The constructor of SimpleMapProperty

Usage

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
}