Package org.dtk.analysis

Examples of org.dtk.analysis.RecursiveModuleAnalysis


      // Prefix http protocol when URL is missing a protocol identifier.
      if (!textUrl.startsWith("http")) {
        textUrl = "http://" + textUrl;
      }
      url = new URL(textUrl);
      RecursiveModuleAnalysis remotePage = new RemoteWebPage(Jsoup.connect(url.toString()).timeout(30 * 1000).get(), url, new DefaultHttpClient(), new HashSet<String>() {{
        add("dojo");
        add("dojox");
        add("dijit");
      }});         
     
View Full Code Here

TOP

Related Classes of org.dtk.analysis.RecursiveModuleAnalysis

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.