* @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);
}