Examples of ApiXmlLanguageLinksResult


Examples of org.wikipediacleaner.api.request.xml.ApiXmlLanguageLinksResult

   * @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
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.