Exemple #1
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;
 }