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; }
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; }
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; }
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; }
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; }
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; }
public final Set<Integer> getNumbers() { if (numbersCache == null) { numbersCache = new HashSet<Integer>(); for (Release e : getEntities()) { numbersCache.add(e.getNumber()); } } return numbersCache; }
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; }