257258259260261262263264265266267
paramMap.put(param, value); } // Render Link now HtmlTag link = writer.startTag("a"); link.addAttribute("href", getUrl(action, paramMap)); link.beginBody(text); link.endTag(); } public String getUrl(String actionName, Map<String, Object> params) {
110111112113114115116117118119120
final HTMLReport report = new HTMLReport(); analyzeFile(); report.beginHTML(); report.title("Encog Analyst Report"); report.beginBody(); report.h1("General Statistics"); report.beginTable(); report.tablePair("Total row count", Format.formatInteger(this.rowCount)); report.tablePair("Missing row count", Format.formatInteger(this.missingCount));