Package thredds.inventory.filter

Examples of thredds.inventory.filter.Composite


   */
  public MCollection(String name, String dirName, boolean wantSubdirs, List<MFileFilter> filters, Object auxInfo) {
    this.name = name;
    this.dirName = dirName;
    this.wantSubdirs = wantSubdirs;
    ff = (filters == null || filters.size() == 0) ? null : ((filters.size() == 1) ? filters.get(0) : new Composite(filters));
    this.auxInfo = auxInfo;
  }
View Full Code Here

TOP

Related Classes of thredds.inventory.filter.Composite

Copyright © 2018 www.massapicom. 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.