예제 #1
0
 public List<String> getLodSetsNames() {
   List<String> names = new ArrayList<String>();
   for (LODSet l : this.lodSets) {
     names.add(l.getIdentifier());
   }
   return names;
 }
예제 #2
0
 public LODSet getLODSet(String identifier) {
   for (LODSet l : this.lodSets) {
     if (l.getIdentifier().equalsIgnoreCase(identifier)) {
       return l;
     }
   }
   return null;
 }