Skip to content
Snippets Groups Projects
Commit a2b94756 authored by Goik Martin's avatar Goik Martin
Browse files

Javadoc related errors

parent b7989c84
No related branches found
No related tags found
No related merge requests found
......@@ -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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment