Package gov.nara.nwts.ftapp.gui

Examples of gov.nara.nwts.ftapp.gui.DirectoryTable


*/
public class FileAnalyzerMod {

  public static void main(String[] args) {
    if (args.length > 0)
      new DirectoryTable(new File(args[0]),true);   
    else
      new DirectoryTable(null,true);   
  }
View Full Code Here


*/
public class FileAnalyzer {

  public static void main(String[] args) {
    if (args.length > 0)
      new DirectoryTable(new File(args[0]),false);   
    else
      new DirectoryTable(null,false);   
  }
View Full Code Here

TOP

Related Classes of gov.nara.nwts.ftapp.gui.DirectoryTable

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.