/* -------------------------------------------------------------------------- */ /* */ /* DOCUMENTATION TOOL APPLICATION CLASS */ /* */ /* Frans Coenen */ /* */ /* Wednesday 19 September 2007 */ /* */ /* Department of Computer Science */ /* The University of Liverpool */ /* */ /* -------------------------------------------------------------------------- */ class ASPdocApp { /** main method to commence processing. @param args the com and line argument list. */ public static void main(String args[]) { // Create filenames list //String[] fileNames = {"quotefunctions.asp"}; //String[] fileNames = {"quotefunctions.asp","startquote3.asp"}; //String[] fileNames = {"startquote3.asp"}; //String[] fileNames = {"testFile.asp","testFileTwo.asp","quotefunctions.asp","startquote3.asp"}; //String[] fileNames = {"testFile.asp","testFileTwo.asp"}; //String[] fileNames = {"testFile.asp"}; //String[] fileNames = {"testFileTwo.asp"}; //String[] fileNames = {"addagent.asp"}; //String[] fileNames = {"addcustomer.asp"}; //String[] fileNames = {"addagent.asp","addcustomer.asp","testFile.asp","testFileTwo.asp","quotefunctions.asp","startquote3.asp"}; //String[] fileNames = {"ACCOUNTS.ASP","AF.ASP","addcustomer.asp","ADDAGENT.ASP", // "_carddetailsform.asp","addsupplier.asp","ADDUSER.ASP", // "addagentsea.asp","administration.asp"}; String[] fileNames = {"ADDAGENT.ASP"}; // Call construtor ASPdoc newDoc = new ASPdoc(fileNames); // Strat focumentation newDoc.startDocumentation(); } }