All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.netopyr.reduxfx.vscenegraph.javafx.TreeItemWrapper Maven / Gradle / Ivy

package com.netopyr.reduxfx.vscenegraph.javafx;

import javafx.scene.control.TreeItem;

import java.util.HashMap;
import java.util.Map;

public class TreeItemWrapper extends TreeItem {

    private Map properties;

    public final Map getProperties() {
        if (properties == null) {
            properties = new HashMap<>();
        }
        return properties;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy