Example usage for javafx.collections FXCollections observableHashMap

List of usage examples for javafx.collections FXCollections observableHashMap

Introduction

In this page you can find the example usage for javafx.collections FXCollections observableHashMap.

Prototype

public static <K, V> ObservableMap<K, V> observableHashMap() 

Source Link

Document

Creates a new empty observable map that is backed by a HashMap.

Usage

From source file:mesclasses.model.Seance.java

public Seance() {
    id = "seance_" + RandomStringUtils.randomAlphanumeric(5);
    donnees = FXCollections.observableHashMap();
}

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();//www.  j av a  2s.  c  om
}