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

cdc.perfs.ui.fx.MeasuresTableCell Maven / Gradle / Ivy

There is a newer version: 0.52.0
Show newest version
package cdc.perfs.ui.fx;

import javafx.geometry.Pos;
import javafx.scene.control.TableCell;

public class MeasuresTableCell extends TableCell {
    @Override
    protected void updateItem(Integer item,
                              boolean empty) {
        super.updateItem(item, empty);
        if (item == null || empty) {
            setText(null);
        } else {
            setText(String.format("%,d", item));
            setAlignment(Pos.CENTER_RIGHT);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy