Package org.wicketstuff.pageserializer.common.analyze.report

Examples of org.wicketstuff.pageserializer.common.analyze.report.LoggerReportOutput


  @Override
  public void init()
  {
    super.init();
   
    IReportOutput reportOutput=new LoggerReportOutput();

    // output of report of type sizes, sorted tree report (by size), aggregated tree
    ISerializedObjectTreeProcessor typeAndSortedTreeAndCollapsedSortedTreeProcessors = TreeProcessors.listOf(
      new TypeSizeReport(reportOutput), new SortedTreeSizeReport(reportOutput), new SimilarNodeTreeTransformator(
        new SortedTreeSizeReport(reportOutput)));
View Full Code Here


      {
        return null;
      }
    };
   
    IReportOutput reportOutput=new LoggerReportOutput();

    ISerializedObjectTreeProcessor treeProcessor = TreeProcessors.listOf(new TypeSizeReport(reportOutput),
      new TreeSizeReport(reportOutput), new SortedTreeSizeReport(reportOutput), new SimilarNodeTreeTransformator(
        new SortedTreeSizeReport(reportOutput)));
    ITreeFilter filter = new TypeFilter(Class.class);
View Full Code Here

TOP

Related Classes of org.wicketstuff.pageserializer.common.analyze.report.LoggerReportOutput

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.