Examples of MCollection


Examples of thredds.inventory.MCollection

    return listDatasets(null);
  }

  @Override
  public List<CrawlableDataset> listDatasets(CrawlableDatasetFilter filter) throws IOException {
    MCollection mc = new MCollection(mfile.getPath(), mfile.getPath(), false, (MFileFilter) null, null);
    Iterator<MFile> iter = controller.getInventory(mc);
    List<CrawlableDataset> result = new ArrayList<CrawlableDataset>();
    while (iter.hasNext()) {
      CrawlableMFile crf = new CrawlableMFile(controller, iter.next());
      if (filter == null || filter.accept(crf))
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.