| com.lowagie.text.xml.SAXiTextHandler com.lowagie.text.xml.SAXmyHandler
SAXmyHandler | public class SAXmyHandler extends SAXiTextHandler (Code) | | The Tags -class maps several XHTML-tags to iText-objects.
|
Field Summary | |
protected HashMap | myTags This hashmap contains all the custom keys and peers. |
Constructor Summary | |
public | SAXmyHandler(DocListener document, HashMap myTags) Constructs a new SAXiTextHandler that will translate all the events
triggered by the parser to actions on the Document -object. |
myTags | protected HashMap myTags(Code) | | This hashmap contains all the custom keys and peers.
|
SAXmyHandler | public SAXmyHandler(DocListener document, HashMap myTags)(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: myTags - a userdefined tagmap |
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 if Namespace 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 if Namespace 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)
|
|
|