Examples of listAllArtifacts()


Examples of net.sf.collabreview.core.Repository.listAllArtifacts()

          int totalRevisionsBefore = 0;
          int totalRevisionsAfter = 0;
          result.append("<table border=1>\n");
          Repository repository = collabReview.getRepository();
          TreeSet<String> articles = new TreeSet<String>();
          for (ArtifactIdentifier artifactIdentifier : repository.listAllArtifacts()) {
            articles.add(artifactIdentifier.getName());
            /*articles.add("GreenIT");
            articles.add("Hydra_JF");
            articles.add("Reputationforge");
            articles.add("Issues");
 
View Full Code Here

Examples of net.sf.collabreview.core.Repository.listAllArtifacts()

          for (int i = 0; i < 2 * slices; i++) {
            result.append("<td>").append(microEditCounts[i]).append("</td>");
          }
          result.append("</tr>\n");
          logger.debug("Counting revisions...");
          for (ArtifactIdentifier artifactIdentifier : repository.listAllArtifacts()) {
            long time = repository.getArtifact(artifactIdentifier).getDate().getTime();
            if (time > microEditCastigatorInstallTime - surveyPeriod && time < microEditCastigatorInstallTime) {
              totalRevisionsBefore++;
            }
            if (time > microEditCastigatorInstallTime && time < microEditCastigatorInstallTime + surveyPeriod) {
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.