Package gov.nara.nwts.ftapp

Examples of gov.nara.nwts.ftapp.MyFilenameFilter


  }
 
  public FilenameFilter getFileFilter(FileTest fileTest) {
    FilterPanel fp = (FilterPanel)criteriaPanel.filterTabs.getSelectedComponent();
    if (fp == null) {
      return new MyFilenameFilter(
          criteriaPanel.ignorePeriods.isSelected(),
          "",
          false,
          "",
          false,
          "",
          false,
          "",
          false,
          fileTest.isTestFiles()
      );
    }
      return new MyFilenameFilter(
        criteriaPanel.ignorePeriods.isSelected(),
        fp.prefix.getText(),
        fp.rePrefix.isSelected(),
        fp.contains.getText(),
        fp.reContains.isSelected(),
View Full Code Here

TOP

Related Classes of gov.nara.nwts.ftapp.MyFilenameFilter

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.