Examples of AllPageTitles


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

            /* get the appropriate iterator */
           
            switch (type) {
               
              case 1: /*articles from*/
                      titleIterator = new AllPageTitles(bot, name,null,nonredirects).iterator();
                      break;
 
              case 2: /*articles starting with*/
                        titleIterator = new AllPageTitles(bot,null,name,nonredirects).iterator();
                        break;
                 
              case 3: /*category*/
                  titleIterator = new CategoryMembersSimple(bot, name).iterator();
                  break;
View Full Code Here

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

   * @deprecated use {@link AllPageTitles} directly
   */
  public Iterable<String> getAllPageTitles(String from, String prefix,
      boolean redirects, boolean nonredirects, int... namespaces)
      throws ActionException, VersionException {
    AllPageTitles a = new AllPageTitles(this, from, prefix, RedirectFilter.nonredirects, 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.