Base abstract class for all nodes in a Thymeleaf DOM tree which have children.
5051525354555657585960
if(head!=null) { List<Element> links = new ArrayList<Element>(10); getThymesheetLinkElementsFromParent(head, links); if(!links.isEmpty()) { for(Element link : links) { NestableNode parent = link.getParent(); parent.removeChild(link); } } } }
6061626364656667686970
} public List<String> getThymesheetPaths(Document document) { List<String> filePaths = new ArrayList<String>(); NestableNode head = getHead(document); if(head==null) { head = document; } List<Element> links = new ArrayList<Element>(10);