예제 #1
0
 private void startBundlesByType(BundleType type) {
   for (Entry<String, BundleType> entry : BUNDLES.entrySet()) {
     if (type.equals(entry.getValue())) {
       this.startBundle(entry.getKey());
     }
   }
 }