Package org.wikipedia.Wiki

Examples of org.wikipedia.Wiki.Revision


    "&rvprop=user|timestamp|ids|size|flags|comment";
    String line = fetch(url, "getRecentChangesFromWatchlist");
    String[] revs = line.split("</revisions></page>");
    for (String rev : revs) {
      rev = rev.trim();
      Revision revision;
      if (rev.contains("revid=")) {
        revision = parseRevision(rev, "");
        revisions.add(revision);
      }
View Full Code Here

TOP

Related Classes of org.wikipedia.Wiki.Revision

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.