}
public void testVisitor() throws Exception {
Set<TileSet> tileSets1 = store.getTileSets();
final Set<TileSet> tileSets2 = new HashSet<TileSet>();
store.accept(new TileSetVisitor() {
public void visit(TileSet tileSet, QuotaStore quotaStore) {
tileSets2.add(tileSet);
}
});