Package net.sourceforge.jwbf.mediawiki.actions.queries

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


   
              case 6: /*template users*/
                  if (!templatePrefix.equals("")) {
                    name = templatePrefix + name;
                  }                 
                  titleIterator = new TemplateUserTitles(bot, name).iterator();
                  break;
                 
            }
           
            /* apply the restrictions */
 
View Full Code Here


   *
   */
  public Iterable<String> getTemplateUserTitles(String template,
      int... namespaces) throws ActionException, VersionException {
   
    TemplateUserTitles a = new TemplateUserTitles(this, template,
        namespaces);

    return a;

  }
View Full Code Here

TOP

Related Classes of net.sourceforge.jwbf.mediawiki.actions.queries.TemplateUserTitles

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.