use of com.jsoup.select.Elements in project User-Behavior-in-Facebook by abozanona.
the class Element method parents.
/**
* Get this element's parent and ancestors, up to the document root.
* @return this element's stack of parents, closest first.
*/
public Elements parents() {
Elements parents = new Elements();
accumulateParents(this, parents);
return parents;
}
Aggregations