コード例 #1
0
ファイル: CacheTest.java プロジェクト: yngbldjr/catalog
 private void readNested(CatalogCollection collection) {
   for (CatalogCollection nc : collection.getNestedCollections()) {
     readNested(nc);
   }
   log.append(collection.getPath() + "\n");
 }