Package org.wikipediacleaner.api.request

Examples of org.wikipediacleaner.api.request.ApiLanguageLinksResult


   * @throws APIException
   * @see <a href="http://www.mediawiki.org/wiki/API:Properties#langlinks_.2F_ll">API:Properties#langlinks</a>
   */
  public String getLanguageLink(EnumWikipedia from, EnumWikipedia to, String title)
      throws APIException {
    ApiLanguageLinksResult result = new ApiXmlLanguageLinksResult(from, httpClient);
    ApiLanguageLinksRequest request = new ApiLanguageLinksRequest(from, result);
    return request.getLanguageLink(DataManager.getPage(from, title, null, null, null), to);
  }
View Full Code Here

TOP

Related Classes of org.wikipediacleaner.api.request.ApiLanguageLinksResult

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.