Esempio n. 1
0
 public Set<CorrelationSetDAO> getCorrelationSets() {
   entering("ScopeDaoImpl.getCorrelationSets");
   Set<CorrelationSetDAO> results = new HashSet<CorrelationSetDAO>();
   for (HCorrelationSet hCorrelationSet : _scope.getCorrelationSets()) {
     results.add(new CorrelationSetDaoImpl(_sm, hCorrelationSet));
   }
   return results;
 }