Package gov.nara.nwts.ftapp

Source Code of gov.nara.nwts.ftapp.FileAnalyzer

package gov.nara.nwts.ftapp;

import gov.nara.nwts.ftapp.gui.DirectoryTable;

import java.io.File;

/**
* Driver for the GUI version of the file analyzer with file modification rules disabled.
* This application was originally created by Terry Brady in NARA's Digitization Services Branch.
* @author TBrady
*
*/
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);   
  }

}
TOP

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

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.