Package org.codehaus.mojo.jdepend.objects

Examples of org.codehaus.mojo.jdepend.objects.JDPackage


  protected String getTotalClasses()
    {
      int totalClasses = 0;
     
      for (Iterator<?> it = packages.iterator(); it.hasNext();) {
        JDPackage jdp = (JDPackage)it.next();
        totalClasses = totalClasses + Integer.parseInt(jdp.getStats().getTotalClasses());
      }
     
      return Integer.toString(totalClasses);
    }
View Full Code Here

TOP

Related Classes of org.codehaus.mojo.jdepend.objects.JDPackage

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.