Class HTMLTableColumn<T>

java.lang.Object
com.amalgamasimulation.desktop.html.tables.HTMLTableColumn<T>
Type Parameters:
T - the type of data in the table

public class HTMLTableColumn<T> extends Object
The HTMLTableColumn class represents a column in an HTML table. It provides methods for extracting cell values and applying styles dynamically.
Author:
Alexey Glazyrin
  • Constructor Details

    • HTMLTableColumn

      public HTMLTableColumn(Function<T,String> extractor, String title)
      Constructs a new HTMLTableColumn instance with the specified value extractor and title.
      Parameters:
      extractor - a function to extract the cell value from the data
      title - the title of the column
  • Method Details