Package com.crawljax.examples

Source Code of com.crawljax.examples.SimplestExample

package com.crawljax.examples;

import com.crawljax.core.CrawljaxRunner;
import com.crawljax.core.configuration.CrawljaxConfiguration;

/**
* Crawls our demo site with the default configuration. The crawl will log what it's doing but will
* not produce any output.
*/
public class SimplestExample {

  /**
   * Run this method to start the crawl.
   */
  public static void main(String[] args) {
    CrawljaxRunner crawljax =
            new CrawljaxRunner(CrawljaxConfiguration.builderFor("http://demo.crawljax.com/")
                    .build());
    crawljax.call();
  }
}
TOP

Related Classes of com.crawljax.examples.SimplestExample

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.