Uses of Class
org.jacoco.report.internal.html.HTMLElement
-
Packages that use HTMLElement Package Description org.jacoco.report.internal.html org.jacoco.report.internal.html.page org.jacoco.report.internal.html.table Internal: Sortable HTML table for coverage node elements. -
-
Uses of HTMLElement in org.jacoco.report.internal.html
Methods in org.jacoco.report.internal.html that return HTMLElement Modifier and Type Method Description HTMLElement
HTMLElement. a(java.lang.String hrefattr)
Creates a 'a' element.HTMLElement
HTMLElement. a(java.lang.String hrefattr, java.lang.String classattr)
Creates a 'a' element.HTMLElement
HTMLElement. a(ILinkable linkable, ReportOutputFolder base)
Creates a link to the givenILinkable
.HTMLElement
HTMLElement. body()
Creates a 'body' element.HTMLElement
HTMLElement. code()
Creates a 'code' element.HTMLElement
HTMLElement. div(java.lang.String classattr)
Creates a 'div' element.HTMLElement
HTMLElement. element(java.lang.String name)
HTMLElement
HTMLElement. h1()
Creates a 'h1' element.HTMLElement
HTMLElement. head()
Creates a 'head' element.HTMLElement
HTMLElement. link(java.lang.String relattr, java.lang.String hrefattr, java.lang.String typeattr)
Creates a 'link' element.HTMLElement
HTMLElement. meta(java.lang.String httpequivattr, java.lang.String contentattr)
Creates a 'meta' element.HTMLElement
HTMLElement. p()
Creates a 'p' element.HTMLElement
HTMLElement. pre(java.lang.String classattr)
Creates a 'pre' element.HTMLElement
HTMLElement. span()
Creates a 'span' element.HTMLElement
HTMLElement. span(java.lang.String classattr)
Creates a 'span' element.HTMLElement
HTMLElement. span(java.lang.String classattr, java.lang.String idattr)
Creates a 'span' element.HTMLElement
HTMLElement. table(java.lang.String classattr)
Creates a 'table' element.HTMLElement
HTMLElement. tbody()
Creates a 'tbody' element.HTMLElement
HTMLElement. td()
Creates a 'td' element.HTMLElement
HTMLElement. td(java.lang.String classattr)
Creates a 'td' element.HTMLElement
HTMLElement. tfoot()
Creates a 'tfoot' element.HTMLElement
HTMLElement. thead()
Creates a 'thead' element.HTMLElement
HTMLElement. title()
Creates a 'title' element.HTMLElement
HTMLElement. tr()
Creates a 'tr' element. -
Uses of HTMLElement in org.jacoco.report.internal.html.page
Methods in org.jacoco.report.internal.html.page with parameters of type HTMLElement Modifier and Type Method Description protected void
BundlePage. content(HTMLElement body)
protected void
ClassPage. content(HTMLElement body)
protected abstract void
ReportPage. content(HTMLElement body)
Creates the actual content of the page.protected void
SessionsPage. content(HTMLElement body)
protected void
SourceFilePage. content(HTMLElement body)
protected void
TablePage. content(HTMLElement body)
protected void
ReportPage. head(HTMLElement head)
Creates the elements within the head element.protected void
SourceFilePage. head(HTMLElement head)
protected void
TablePage. head(HTMLElement head)
protected void
PackagePage. infoLinks(HTMLElement span)
protected void
PackageSourcePage. infoLinks(HTMLElement span)
protected void
ReportPage. infoLinks(HTMLElement span)
Inserts additional links on the top right corner. -
Uses of HTMLElement in org.jacoco.report.internal.html.table
Methods in org.jacoco.report.internal.html.table with parameters of type HTMLElement Modifier and Type Method Description void
BarColumn. footer(HTMLElement td, ICoverageNode total, Resources resources, ReportOutputFolder base)
void
CounterColumn. footer(HTMLElement td, ICoverageNode total, Resources resources, ReportOutputFolder base)
void
IColumnRenderer. footer(HTMLElement td, ICoverageNode total, Resources resources, ReportOutputFolder base)
Renders the footer for this column.void
LabelColumn. footer(HTMLElement td, ICoverageNode total, Resources resources, ReportOutputFolder base)
void
PercentageColumn. footer(HTMLElement td, ICoverageNode total, Resources resources, ReportOutputFolder base)
void
BarColumn. item(HTMLElement td, ITableItem item, Resources resources, ReportOutputFolder base)
void
CounterColumn. item(HTMLElement td, ITableItem item, Resources resources, ReportOutputFolder base)
void
IColumnRenderer. item(HTMLElement td, ITableItem item, Resources resources, ReportOutputFolder base)
Renders a single item in this column.void
LabelColumn. item(HTMLElement td, ITableItem item, Resources resources, ReportOutputFolder base)
void
PercentageColumn. item(HTMLElement td, ITableItem item, Resources resources, ReportOutputFolder base)
void
Table. render(HTMLElement parent, java.util.List<? extends ITableItem> items, ICoverageNode total, Resources resources, ReportOutputFolder base)
Renders a table for the given icon
-