Package classycle.renderer

Examples of classycle.renderer.PlainStrongComponentRenderer


   */
  public void printComponents(PrintWriter writer, int minSize)
  {
    checkClassGraph("printComponents()");
    StrongComponent[] components = getCondensedClassGraph();
    StrongComponentRenderer renderer = new PlainStrongComponentRenderer();
    for (int i = 0; i < components.length; i++)
    {
      StrongComponent component = components[i];
      if (component.getNumberOfVertices() >= minSize)
      {
        writer.println(renderer.render(component));
      }
    }
    writer.close();
  }
View Full Code Here

TOP

Related Classes of classycle.renderer.PlainStrongComponentRenderer

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.