Here you can find the source of getAuthorName(Element authorElement)
Parameter | Description |
---|---|
authorElement | a parameter |
private static String getAuthorName(Element authorElement)
//package com.java2s; //License from project: Open Source License import org.jsoup.nodes.Element; public class Main { /**/*from w w w . j a v a 2 s . c om*/ * * @param authorElement * @return Author name returned by Google Scholar */ private static String getAuthorName(Element authorElement) { return authorElement.text().trim(); } }