Package com.ptaack.seobot.tasks

Examples of com.ptaack.seobot.tasks.VisitTask


      while ((line = input.readLine()) != null) {
        if (line.charAt(0) == '\u0023')
          continue;
        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]));
        }
      }
View Full Code Here

TOP

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

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.