From a2b94756ff625fe0843fa5e874a9d16df48e97d6 Mon Sep 17 00:00:00 2001 From: Martin Goik <goik@hdm-stuttgart.de> Date: Tue, 3 Nov 2015 11:54:39 +0100 Subject: [PATCH] Javadoc related errors --- .../java/de/hdm_stuttgart/mi/xmlstat/HtmlTree.java | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/P/Sda1/Jdom/Xmlstat/src/main/java/de/hdm_stuttgart/mi/xmlstat/HtmlTree.java b/P/Sda1/Jdom/Xmlstat/src/main/java/de/hdm_stuttgart/mi/xmlstat/HtmlTree.java index 85dfcaf0b..a3c9b94de 100644 --- a/P/Sda1/Jdom/Xmlstat/src/main/java/de/hdm_stuttgart/mi/xmlstat/HtmlTree.java +++ b/P/Sda1/Jdom/Xmlstat/src/main/java/de/hdm_stuttgart/mi/xmlstat/HtmlTree.java @@ -17,24 +17,26 @@ import org.jdom2.output.XMLOutputter; */ public class HtmlTree { + /** + * + */ static public final Namespace HTML = Namespace.getNamespace("http://www.w3.org/1999/xhtml"); private final Element tableBody = new Element("tbody", HTML). addContent(new Comment(" End of static, beginning of dynamic section")); + /** * Create a HTML skeleton (<html><head>...<body> ... * </body></head> - * to be filled in later by calling {@link #appendItem(String, String)}. + * to be filled in later. * * @param titleText * The document's title, e.g. "Available articles" * - * @param tableHeaderFields - * The articles will be displayed as HTML table with these header fields - * e.g. {"Article Description", "Order Number" } */ + @SuppressWarnings("unused") public HtmlTree(final String titleText) { // We create a HTML skeleton including a yet empty table @@ -62,9 +64,8 @@ public class HtmlTree { } /** - * Inserting an <item> as a new table row with two <td> elements. * - * @param itemName The item's name (e.g. Tennis racket) + * @param entry namespace among with corresponding elements. */ public void appendNamespace(final Entry<Namespace, ElementFrequency> entry) { -- GitLab