Here you can find the source of parsePropertyTable(Element table)
public static Map<String, String> parsePropertyTable(Element table)
//package com.java2s; //License from project: Apache License import org.jsoup.nodes.Element; import org.jsoup.select.Elements; import java.util.HashMap; import java.util.Map; public class Main { public static Map<String, String> parsePropertyTable(Element table) { Map<String, String> ret = new HashMap<String, String>(); Elements tr = table.select("tr"); for (Element element : tr) { addProperty(ret, element);/*from w ww. j a v a2s . c om*/ } return ret; } private static void addProperty(Map<String, String> ret, Element element) { throw new UnsupportedOperationException("Fix This"); // ToDo } }