Esempio n. 1
0
 public final Set<java.lang.String> getScriptOutputs() {
   if (scriptOutputsCache == null) {
     scriptOutputsCache = new HashSet<java.lang.String>();
     for (Release e : getEntities()) {
       if (e.isScriptOutputSet()) scriptOutputsCache.add(e.getScriptOutput());
     }
   }
   return scriptOutputsCache;
 }
Esempio n. 2
0
 public final Set<scrum.server.project.Project> getProjects() {
   if (projectsCache == null) {
     projectsCache = new HashSet<scrum.server.project.Project>();
     for (Release e : getEntities()) {
       if (e.isProjectSet()) projectsCache.add(e.getProject());
     }
   }
   return projectsCache;
 }
Esempio n. 3
0
 public final Set<ilarkesto.base.time.Date> getReleaseDates() {
   if (releaseDatesCache == null) {
     releaseDatesCache = new HashSet<ilarkesto.base.time.Date>();
     for (Release e : getEntities()) {
       if (e.isReleaseDateSet()) releaseDatesCache.add(e.getReleaseDate());
     }
   }
   return releaseDatesCache;
 }
Esempio n. 4
0
 public final Set<java.lang.String> getReleaseNotess() {
   if (releaseNotessCache == null) {
     releaseNotessCache = new HashSet<java.lang.String>();
     for (Release e : getEntities()) {
       if (e.isReleaseNotesSet()) releaseNotessCache.add(e.getReleaseNotes());
     }
   }
   return releaseNotessCache;
 }
Esempio n. 5
0
 public final Set<java.lang.String> getNotes() {
   if (notesCache == null) {
     notesCache = new HashSet<java.lang.String>();
     for (Release e : getEntities()) {
       if (e.isNoteSet()) notesCache.add(e.getNote());
     }
   }
   return notesCache;
 }
Esempio n. 6
0
 public final Set<java.lang.String> getLabels() {
   if (labelsCache == null) {
     labelsCache = new HashSet<java.lang.String>();
     for (Release e : getEntities()) {
       if (e.isLabelSet()) labelsCache.add(e.getLabel());
     }
   }
   return labelsCache;
 }
Esempio n. 7
0
 public final Set<Integer> getNumbers() {
   if (numbersCache == null) {
     numbersCache = new HashSet<Integer>();
     for (Release e : getEntities()) {
       numbersCache.add(e.getNumber());
     }
   }
   return numbersCache;
 }
Esempio n. 8
0
 public final Set<scrum.server.sprint.Sprint> getSprints() {
   if (sprintsCache == null) {
     sprintsCache = new HashSet<scrum.server.sprint.Sprint>();
     for (Release e : getEntities()) {
       sprintsCache.addAll(e.getSprints());
     }
   }
   return sprintsCache;
 }
Esempio n. 9
0
 public final Set<scrum.server.release.Release> getParentReleases() {
   if (parentReleasesCache == null) {
     parentReleasesCache = new HashSet<scrum.server.release.Release>();
     for (Release e : getEntities()) {
       if (e.isParentReleaseSet()) parentReleasesCache.add(e.getParentRelease());
     }
   }
   return parentReleasesCache;
 }