Module org.eclipse.persistence.core
Interface ExtendedContentHandler
-
- All Superinterfaces:
ContentHandler
- All Known Subinterfaces:
UnmarshalRecord<ABSTRACT_SESSION,FIELD,ID_RESOLVER,OBJECT_BUILDER,TRANSFORMATION_RECORD,UNMARSHALLER>
- All Known Implementing Classes:
BinaryDataUnmarshalRecord,JsonRecord.JsonRecordContentHandler,JSONWriterRecord.JSONWriterRecordContentHandler,MarshalRecordContentHandler,NodeRecord.NodeRecordContentHandler,OutputStreamRecord.OutputStreamRecordContentHandler,SAXDocumentBuilder,SAXFragmentBuilder,SAXUnmarshallerHandler,UnmappedContentHandlerWrapper,UnmarshalRecord,UnmarshalRecordImpl,WriterRecord.WriterRecordContentHandler,XMLBinaryAttachmentHandler,XMLInlineBinaryHandler,XMLReaderAdapter.ExtendedContentHandlerAdapter,XMLRootRecord,XMLUnmarshallerHandler
public interface ExtendedContentHandler extends ContentHandler
This class is used to introduce new events to the standard ContentHandler interface that can be leveraged by MOXy.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcharacters(CharSequence characters)voidsetNil(boolean isNil)This method can be used to track that the current element is nil-
Methods inherited from interface org.xml.sax.ContentHandler
characters, endDocument, endElement, endPrefixMapping, ignorableWhitespace, processingInstruction, setDocumentLocator, skippedEntity, startDocument, startElement, startPrefixMapping
-
-
-
-
Method Detail
-
characters
void characters(CharSequence characters) throws SAXException
- Throws:
SAXException
-
setNil
void setNil(boolean isNil)
This method can be used to track that the current element is nil
-
-