Examples of JDPackage


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
Copyright © 2018 www.massapi.com. 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.