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

it.unibo.tuprolog.ui.gui.ListCellView.kt Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package it.unibo.tuprolog.ui.gui

import javafx.scene.Node
import javafx.scene.control.ListCell

class ListCellView(private val viewGenerator: (T) -> Node) : ListCell() {
    override fun updateItem(
        item: T?,
        empty: Boolean,
    ) {
        super.updateItem(item, empty)
        graphic =
            if (empty || item == null) {
                null
            } else {
                viewGenerator(item)
            }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy