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

de.digitalcollections.model.text.contentblock.TableHeader Maven / Gradle / Ivy

package de.digitalcollections.model.text.contentblock;

/** A table header of a table. */
public class TableHeader extends ContentBlockNodeWithAttributes {

  public TableHeader() {}

  public TableHeader(String colspan, String rowspan, String colwidth) {
    super();
    addAttribute("colspan", colspan);
    addAttribute("rowspan", rowspan);
    addAttribute("colwidth", colwidth);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy