Package org.jboss.varia.stats.report

Examples of org.jboss.varia.stats.report.ReportGenerator


      StringBuffer buf = new StringBuffer();

      buf.append("<table><tr><th>Report</th><th>Description</th></tr>");
      for(Iterator generators = reportGenerators.iterator(); generators.hasNext();)
      {
         ReportGenerator generator = (ReportGenerator)generators.next();
         buf.append("<tr><td>")
            .append("<a href='HtmlAdaptor?")
            .append("action=invokeOpByName&name=")
            .append(generator.getServiceName())
            .append("&methodName=generate&")
            .append("argType=java.lang.String&arg0=")
            .append("'>")
            .append(generator.getName())
            .append("</a></td><td>")
            .append(generator.getDescription())
            .append("</td></tr>");
      }
      buf.append("</table>");

      /*
 
View Full Code Here

TOP

Related Classes of org.jboss.varia.stats.report.ReportGenerator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.