Go to the documentation of this file.
19package org.sleuthkit.autopsy.timeline;
21import javafx.scene.control.ListCell;
22import javafx.scene.text.Text;
27class WrappingListCell
extends ListCell<String> {
30 public void updateItem(String item,
boolean empty) {
31 super.updateItem(item, empty);
32 if (item ==
null || isEmpty()) {
35 Text text =
new Text(item);
36 text.wrappingWidthProperty().bind(getListView().widthProperty().subtract(20));
Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.