Java HTML Jsoup Element processCheck(Element ele, Element parent, String dict)

Here you can find the source of processCheck(Element ele, Element parent, String dict)

Description

process Check

License

Apache License

Declaration

private static String processCheck(Element ele, Element parent, String dict) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import org.jsoup.nodes.Element;

public class Main {
    private static String processCheck(Element ele, Element parent, String dict) {
        StringBuilder builder = new StringBuilder();
        builder.append("<input name=\"").append(ele.attr("name"));
        builder.append("\" id=\"").append(ele.attr("id"));
        builder.append("\" style=\"").append(ele.attr("style"));
        builder.append("\" value=\"");
        builder.append("\" type=\"check\"/>");
        builder.append("");
        return builder.toString();
    }/*from  w  w  w  . j a v a  2 s .  c o m*/
}

Related

  1. isChildOf(Element child, Elements possibleParents)
  2. isEmptyElement(Node node)
  3. markAll(Elements tags)
  4. markChildren(Element tag, final String color)
  5. printNode(Element root)
  6. randomElement()
  7. replaceHtml(Node element)
  8. sameTagElNums(Element e)
  9. setAttribute(Element e, String key, String value)