Go to the documentation of this file.
19package org.sleuthkit.autopsy.report.modules.datasourcesummaryexport;
21import java.util.function.Function;
28class ColumnModel<T, C
extends CellModel> {
30 private final String headerTitle;
31 private final Function<T, ? extends C> cellRenderer;
32 private final Integer width;
41 ColumnModel(String headerTitle, Function<T, ? extends C> cellRenderer) {
42 this(headerTitle, cellRenderer,
null);
53 ColumnModel(String headerTitle, Function<T, ? extends C> cellRenderer, Integer width) {
54 this.headerTitle = headerTitle;
55 this.cellRenderer = cellRenderer;
62 String getHeaderTitle() {
70 Function<T, ? extends C> getCellRenderer() {
Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.