Examples of BacklinkTitles


Examples of net.sourceforge.jwbf.mediawiki.actions.queries.BacklinkTitles

              case 3: /*category*/
                  titleIterator = new CategoryMembersSimple(bot, name).iterator();
                  break;
             
              case 4: /*backlinks*/
                  titleIterator = new BacklinkTitles(bot, name).iterator();
                  break;
 
              case 5: /*imagelinks*/
                  if (!imagePrefix.equals("")) {
                    name = imagePrefix + name;
View Full Code Here

Examples of net.sourceforge.jwbf.mediawiki.actions.queries.BacklinkTitles

   */
  public Iterable<String> getBacklinkTitles(String article,
      RedirectFilter redirectFilter, int... namespaces)
      throws ActionException, ProcessException {

    BacklinkTitles a = new BacklinkTitles(this, article,
        redirectFilter, namespaces);

    return a;
  }
View Full Code Here
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.