| com.lowagie.text.xml.SAXiTextHandler com.lowagie.text.html.SAXmyHtmlHandler
SAXmyHtmlHandler | public class SAXmyHtmlHandler extends SAXiTextHandler (Code) | | The Tags -class maps several XHTML-tags to iText-objects.
|
Constructor Summary | |
public | SAXmyHtmlHandler(DocListener document) Constructs a new SAXiTextHandler that will translate all the events
triggered by the parser to actions on the Document -object. | public | SAXmyHtmlHandler(DocListener document, BaseFont bf) Constructs a new SAXiTextHandler that will translate all the events
triggered by the parser to actions on the Document -object. | public | SAXmyHtmlHandler(DocListener document, HashMap htmlTags) Constructs a new SAXiTextHandler that will translate all the events
triggered by the parser to actions on the Document -object. |
SAXmyHtmlHandler | public SAXmyHtmlHandler(DocListener document)(Code) | | Constructs a new SAXiTextHandler that will translate all the events
triggered by the parser to actions on the Document -object.
Parameters: document - this is the document on which events must be triggered |
SAXmyHtmlHandler | public SAXmyHtmlHandler(DocListener document, BaseFont bf)(Code) | | Constructs a new SAXiTextHandler that will translate all the events
triggered by the parser to actions on the Document -object.
Parameters: document - this is the document on which events must be triggered Parameters: bf - |
SAXmyHtmlHandler | public SAXmyHtmlHandler(DocListener document, HashMap htmlTags)(Code) | | Constructs a new SAXiTextHandler that will translate all the events
triggered by the parser to actions on the Document -object.
Parameters: document - this is the document on which events must be triggered Parameters: htmlTags - a tagmap translating HTML tags to iText tags |
endElement | public void endElement(String uri, String lname, String name)(Code) | | This method gets called when an end tag is encountered.
Parameters: uri - the Uniform Resource Identifier Parameters: lname - the local name (without prefix), or the empty string ifNamespace processing is not being performed. Parameters: name - the name of the tag that ends |
startElement | public void startElement(String uri, String lname, String name, Attributes attrs)(Code) | | This method gets called when a start tag is encountered.
Parameters: uri - the Uniform Resource Identifier Parameters: lname - the local name (without prefix), or the empty string ifNamespace processing is not being performed. Parameters: name - the name of the tag that is encountered Parameters: attrs - the list of attributes |
Methods inherited from com.lowagie.text.xml.SAXiTextHandler | protected void addImage(Image img) throws EmptyStackException(Code)(Java Doc) public void characters(char[] ch, int start, int length)(Code)(Java Doc) public void endElement(String uri, String lname, String name)(Code)(Java Doc) public void handleEndingTags(String name)(Code)(Java Doc) public void handleStartingTags(String name, Properties attributes)(Code)(Java Doc) public void ignorableWhitespace(char[] ch, int start, int length)(Code)(Java Doc) protected boolean isDocumentRoot(String tag)(Code)(Java Doc) public void setBaseFont(BaseFont bf)(Code)(Java Doc) public void setControlOpenClose(boolean controlOpenClose)(Code)(Java Doc) public void startElement(String uri, String lname, String name, Attributes attrs)(Code)(Java Doc)
|
|
|