Package com.ptaack.seobot.tasks

Examples of com.ptaack.seobot.tasks.FetchTask


        String[] elemArr = line.split(";");
        if (elemArr[0].toLowerCase().equals("visit")) {
          this.Tasks.add(new VisitTask(elemArr[1], elemArr[2]));
        }
        else if (elemArr[0].toLowerCase().equals("fetchproxy")) {
          this.Tasks.add(new FetchTask(elemArr[1]));
        }
      }
    } catch (FileNotFoundException e) {
      System.err.println("Could not found configuration file");
View Full Code Here

TOP

Related Classes of com.ptaack.seobot.tasks.FetchTask

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.