Package gov.nara.nwts.ftapp

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

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 enabled.
* This application was originally created by Terry Brady in NARA's Digitization Services Branch.
* @author TBrady
*
*/
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);   
  }

}
TOP

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

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.