List of usage examples for com.itextpdf.text.html.simpleparser HTMLTagProcessor endElement
public abstract void endElement(HTMLWorker worker, String tag) throws DocumentException;
From source file:com.masscustsoft.service.ToPdf.java
License:Open Source License
/** * @see com.itextpdf.text.xml.simpleparser.SimpleXMLDocHandler#endElement(java.lang.String) *///from ww w . j a v a 2 s. c om public void endElement(final String tag) { HTMLTagProcessor htmlTag = tags.get(tag); if (htmlTag == null) { return; } // process the tag try { htmlTag.endElement(this, tag); } catch (DocumentException e) { throw new ExceptionConverter(e); } }