Package com.sun.xml.ws.db.sdo
Class SAX2StaxContentHandler
- java.lang.Object
-
- com.sun.xml.ws.db.sdo.SAX2StaxContentHandler
-
- All Implemented Interfaces:
ContentHandler
public class SAX2StaxContentHandler extends Object implements ContentHandler
Created by IntelliJ IDEA. User: giglee Date: May 15, 2009 Time: 3:44:12 PM To change this template use File | Settings | File Templates.
-
-
Constructor Summary
Constructors Constructor Description SAX2StaxContentHandler(XMLStreamWriter writer)SAX2StaxContentHandler(XMLStreamWriter writer, boolean writeDoc)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcharacters(char[] chars, int i, int i1)voidendDocument()voidendElement(String string, String string1, String string2)voidendPrefixMapping(String string)voidignorableWhitespace(char[] chars, int i, int i1)voidprocessingInstruction(String string, String string1)voidsetDocumentLocator(Locator locator)voidskippedEntity(String string)voidstartDocument()voidstartElement(String ns, String local, String qname, Attributes attributes)voidstartPrefixMapping(String prefix, String uri)
-
-
-
Constructor Detail
-
SAX2StaxContentHandler
public SAX2StaxContentHandler(XMLStreamWriter writer, boolean writeDoc)
-
SAX2StaxContentHandler
public SAX2StaxContentHandler(XMLStreamWriter writer)
-
-
Method Detail
-
setDocumentLocator
public void setDocumentLocator(Locator locator)
- Specified by:
setDocumentLocatorin interfaceContentHandler
-
startDocument
public void startDocument() throws SAXException- Specified by:
startDocumentin interfaceContentHandler- Throws:
SAXException
-
endDocument
public void endDocument() throws SAXException- Specified by:
endDocumentin interfaceContentHandler- Throws:
SAXException
-
startPrefixMapping
public void startPrefixMapping(String prefix, String uri) throws SAXException
- Specified by:
startPrefixMappingin interfaceContentHandler- Throws:
SAXException
-
endPrefixMapping
public void endPrefixMapping(String string) throws SAXException
- Specified by:
endPrefixMappingin interfaceContentHandler- Throws:
SAXException
-
startElement
public void startElement(String ns, String local, String qname, Attributes attributes) throws SAXException
- Specified by:
startElementin interfaceContentHandler- Throws:
SAXException
-
endElement
public void endElement(String string, String string1, String string2) throws SAXException
- Specified by:
endElementin interfaceContentHandler- Throws:
SAXException
-
characters
public void characters(char[] chars, int i, int i1) throws SAXException- Specified by:
charactersin interfaceContentHandler- Throws:
SAXException
-
ignorableWhitespace
public void ignorableWhitespace(char[] chars, int i, int i1) throws SAXException- Specified by:
ignorableWhitespacein interfaceContentHandler- Throws:
SAXException
-
processingInstruction
public void processingInstruction(String string, String string1) throws SAXException
- Specified by:
processingInstructionin interfaceContentHandler- Throws:
SAXException
-
skippedEntity
public void skippedEntity(String string) throws SAXException
- Specified by:
skippedEntityin interfaceContentHandler- Throws:
SAXException
-
-