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.Constructors in org.jacoco.report.internal.html with parameters of type HTMLElement Constructor Description HTMLElement(java.lang.String name, HTMLElement parent)
-
Uses of HTMLElement in org.jacoco.report.internal.html.page
Methods in org.jacoco.report.internal.html.page that return HTMLElement Modifier and Type Method Description (package private) HTMLElement
SourceHighlighter. highlight(HTMLElement pre, ILine line, int lineNr)
private HTMLElement
SourceHighlighter. span(HTMLElement parent, java.lang.String id, java.lang.String style1, java.lang.String style2, java.lang.String title, ICounter branches)
Methods in org.jacoco.report.internal.html.page with parameters of type HTMLElement Modifier and Type Method Description private void
ReportPage. body(HTMLElement body)
private void
ReportPage. breadcrumb(HTMLElement div, ReportOutputFolder base)
private static void
ReportPage. breadcrumbParent(ReportPage page, HTMLElement div, ReportOutputFolder base)
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)
private void
SessionsPage. executionDataTable(HTMLElement body)
private void
ReportPage. footer(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)
(package private) HTMLElement
SourceHighlighter. highlight(HTMLElement pre, ILine line, int lineNr)
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.void
SourceHighlighter. render(HTMLElement parent, ISourceNode source, java.io.Reader contents)
Highlights the given source file.private void
SourceHighlighter. renderCodeLine(HTMLElement pre, java.lang.String linesrc, ILine line, int lineNr)
private void
SessionsPage. sessionTable(HTMLElement body)
private HTMLElement
SourceHighlighter. span(HTMLElement parent, java.lang.String id, java.lang.String style1, java.lang.String style2, java.lang.String title, ICounter branches)
-
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 private void
BarColumn. bar(HTMLElement td, int count, java.lang.String image, Resources resources, ReportOutputFolder base)
private void
Table. body(HTMLElement table, java.util.List<? extends ITableItem> items, Resources resources, ReportOutputFolder base)
(package private) void
Table.Column. body(HTMLElement tr, int idx, ITableItem item, Resources resources, ReportOutputFolder base)
private void
CounterColumn. cell(HTMLElement td, ICoverageNode node)
private void
PercentageColumn. cell(HTMLElement td, ICoverageNode node)
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)
(package private) void
Table.Column. footer(HTMLElement tr, ICoverageNode total, Resources resources, ReportOutputFolder base)
private void
Table. footer(HTMLElement table, ICoverageNode total, Resources resources, ReportOutputFolder base)
private void
Table. header(HTMLElement table, java.util.List<? extends ITableItem> items, ICoverageNode total)
(package private) void
Table.Column. init(HTMLElement tr, java.util.List<? extends ITableItem> items, ICoverageNode total)
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
-