Searched refs:fDocumentHandler (Results 1 - 22 of 22) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DIntegratedParserConfiguration.java171 fDTDValidator.setDocumentHandler(fDocumentHandler);
172 if (fDocumentHandler != null) {
173 fDocumentHandler.setDocumentSource(fDTDValidator);
178 fNamespaceScanner.setDocumentHandler(fDocumentHandler);
180 if (fDocumentHandler != null) {
181 fDocumentHandler.setDocumentSource(fNamespaceScanner);
193 fNonNSDTDValidator.setDocumentHandler(fDocumentHandler);
194 if (fDocumentHandler != null) {
195 fDocumentHandler.setDocumentSource(fNonNSDTDValidator);
200 fScanner.setDocumentHandler(fDocumentHandler);
[all...]
H A DBasicParserConfiguration.java164 protected XMLDocumentHandler fDocumentHandler; field in class:BasicParserConfiguration
327 fDocumentHandler = documentHandler;
329 fLastComponent.setDocumentHandler(fDocumentHandler);
330 if (fDocumentHandler !=null){
331 fDocumentHandler.setDocumentSource(fLastComponent);
338 return fDocumentHandler;
H A DXML11Configuration.java313 protected XMLDocumentHandler fDocumentHandler; field in class:XML11Configuration
661 fDocumentHandler = documentHandler;
663 fLastComponent.setDocumentHandler(fDocumentHandler);
664 if (fDocumentHandler !=null){
665 fDocumentHandler.setDocumentSource(fLastComponent);
672 return fDocumentHandler;
1093 fXML11NSDTDValidator.setDocumentHandler(fDocumentHandler);
1095 if (fDocumentHandler != null) {
1096 fDocumentHandler.setDocumentSource(fXML11NSDTDValidator);
1116 fXML11DTDValidator.setDocumentHandler(fDocumentHandler);
[all...]
H A DXML11DTDConfiguration.java233 protected XMLDocumentHandler fDocumentHandler; field in class:XML11DTDConfiguration
546 fDocumentHandler = documentHandler;
548 fLastComponent.setDocumentHandler(fDocumentHandler);
549 if (fDocumentHandler !=null){
550 fDocumentHandler.setDocumentSource(fLastComponent);
557 return fDocumentHandler;
952 fXML11NSDTDValidator.setDocumentHandler(fDocumentHandler);
954 if (fDocumentHandler != null) {
955 fDocumentHandler.setDocumentSource(fXML11NSDTDValidator);
975 fXML11DTDValidator.setDocumentHandler(fDocumentHandler);
[all...]
H A DXML11NonValidatingConfiguration.java190 protected XMLDocumentHandler fDocumentHandler; field in class:XML11NonValidatingConfiguration
472 fDocumentHandler = documentHandler;
474 fLastComponent.setDocumentHandler(fDocumentHandler);
475 if (fDocumentHandler !=null){
476 fDocumentHandler.setDocumentSource(fLastComponent);
483 return fDocumentHandler;
866 fXML11NSDocScanner.setDocumentHandler(fDocumentHandler);
867 if (fDocumentHandler != null) {
868 fDocumentHandler.setDocumentSource(fXML11NSDocScanner);
883 fXML11DocScanner.setDocumentHandler(fDocumentHandler);
[all...]
H A DAbstractSAXParser.java177 protected DocumentHandler fDocumentHandler; field in class:AbstractSAXParser
277 if (fDocumentHandler != null) {
279 fDocumentHandler.setDocumentLocator(new LocatorProxy(locator));
281 fDocumentHandler.startDocument();
454 if (fDocumentHandler != null) {
458 fDocumentHandler.startElement(element.rawname, fAttributesProxy);
535 if (fDocumentHandler != null) {
538 fDocumentHandler.characters(text.ch, text.offset, text.length);
569 if (fDocumentHandler != null) {
570 fDocumentHandler
[all...]
H A DDTDConfiguration.java645 fNamespaceBinder.setDocumentHandler(fDocumentHandler);
650 fDTDValidator.setDocumentHandler(fDocumentHandler);
658 fNamespaceBinder.setDocumentHandler(fDocumentHandler);
663 fScanner.setDocumentHandler(fDocumentHandler);
H A DStandardParserConfiguration.java269 fSchemaValidator.setDocumentHandler(fDocumentHandler);
H A DNonValidatingConfiguration.java626 fScanner.setDocumentHandler(fDocumentHandler);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLNamespaceBinder.java169 protected XMLDocumentHandler fDocumentHandler; field in class:XMLNamespaceBinder
359 fDocumentHandler = documentHandler;
364 return fDocumentHandler;
404 if (fDocumentHandler != null && !fOnlyPassPrefixMappingEvents) {
405 fDocumentHandler.startGeneralEntity(name, identifier, encoding, augs);
428 if (fDocumentHandler != null && !fOnlyPassPrefixMappingEvents) {
429 fDocumentHandler.textDecl(version, encoding, augs);
460 if (fDocumentHandler != null && !fOnlyPassPrefixMappingEvents) {
461 fDocumentHandler.startDocument(locator, encoding, namespaceContext, augs);
480 if (fDocumentHandler !
[all...]
H A DXMLDocumentFragmentScannerImpl.java244 protected XMLDocumentHandler fDocumentHandler; field in class:XMLDocumentFragmentScannerImpl
449 //System.out.println(" get Document Handler in NSDocumentHandler " + fDocumentHandler );
455 //fDocumentHandler.startDocument(fEntityManager.getEntityScanner(),fEntityManager.getEntityScanner().getVersion(),fNamespaceContext,null);// not able to get
459 //fDocumentHandler.startElement(getElementQName(),fAttributes,null);
462 fDocumentHandler.characters(getCharacterData(),null);
467 //fDocumentHandler.ignorableWhitespace(getCharacterData(), null);
473 fDocumentHandler.processingInstruction(getPITarget(),getPIData(),null);
477 fDocumentHandler.comment(getCharacterData(),null);
485 fDocumentHandler.startCDATA(null);
487 fDocumentHandler
[all...]
H A DXML11NSDocumentScannerImpl.java354 fDocumentHandler.emptyElement(fElementQName, fAttributes, null);
368 if (fDocumentHandler != null)
369 fDocumentHandler.startElement(fElementQName, fAttributes, null);
558 if (fDocumentHandler != null) {
571 fDocumentHandler.emptyElement(fElementQName, fAttributes, null);
579 fDocumentHandler.startElement(fElementQName, fAttributes, null);
811 if (fDocumentHandler != null) {
812 fDocumentHandler.endElement(endElementName, null);
H A DXMLNSDocumentScannerImpl.java349 if (fDocumentHandler != null) {
353 fDocumentHandler.emptyElement(fElementQName, fAttributes, null);
370 if(fDocumentHandler != null){
376 fDocumentHandler.startElement(fElementQName, fAttributes, null);
H A DXMLDocumentScannerImpl.java545 if (fDocumentHandler != null && name.equals("[xml]")) {
546 fDocumentHandler.startDocument(fEntityScanner, encoding, fNamespaceContext, null);
581 //if (fDocumentHandler != null) {
582 //fDocumentHandler.endDocument(null);
663 if (supportDTD && fDocumentHandler != null) {
670 fDocumentHandler.doctypeDecl(fDoctypeName, fDoctypePublicId, fDoctypeSystemId, null);
673 fDocumentHandler.doctypeDecl(fDoctypeName, fExternalSubsetSource.getPublicId(), fExternalSubsetSource.getSystemId(), null);
1327 if (fDocumentHandler != null) {
1330 fDocumentHandler.doctypeDecl(fDoctypeName, fDoctypePublicId, fDoctypeSystemId, null);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xinclude/
H A DXPointerElementHandler.java129 protected XMLDocumentHandler fDocumentHandler; field in class:XPointerElementHandler
394 fDocumentHandler = handler;
398 return fDocumentHandler;
615 if (fDocumentHandler != null && includeElement) {
616 fDocumentHandler.comment(text, augs);
622 if (fDocumentHandler != null && includeElement) {
623 fDocumentHandler.processingInstruction(target, data, augs);
646 if(fDocumentHandler != null && includeElement){
648 fDocumentHandler.startElement(element, attributes, augs);
658 fDocumentHandler
[all...]
H A DXIncludeHandler.java259 protected XMLDocumentHandler fDocumentHandler; field in class:XIncludeHandler
759 fDocumentHandler = handler;
764 return fDocumentHandler;
816 if (isRootDocument() && fDocumentHandler != null) {
817 fDocumentHandler.startDocument(
833 if (isRootDocument() && fDocumentHandler != null) {
834 fDocumentHandler.xmlDecl(version, encoding, standalone, augs);
845 if (isRootDocument() && fDocumentHandler != null) {
846 fDocumentHandler.doctypeDecl(rootElement, publicId, systemId, augs);
854 if (fDocumentHandler !
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DXMLDTDValidator.java252 protected XMLDocumentHandler fDocumentHandler; field in class:XMLDTDValidator
574 fDocumentHandler = documentHandler;
579 return fDocumentHandler;
635 if (fDocumentHandler != null) {
636 fDocumentHandler.startDocument(locator, encoding, namespaceContext, augs);
661 if (fDocumentHandler != null) {
662 fDocumentHandler.xmlDecl(version, encoding, standalone, augs);
723 if (fDocumentHandler != null) {
724 fDocumentHandler.doctypeDecl(rootElement, publicId, systemId, augs);
744 if (fDocumentHandler !
[all...]
H A DXML11NSDTDValidator.java256 if (fDocumentHandler != null) {
258 fDocumentHandler.endElement(element, augs);
H A DXMLNSDTDValidator.java264 if (fDocumentHandler != null) {
266 fDocumentHandler.endElement(element, augs);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXMLSchemaValidator.java507 protected XMLDocumentHandler fDocumentHandler; field in class:XMLSchemaValidator
613 fDocumentHandler = documentHandler;
629 return fDocumentHandler;
682 if (fDocumentHandler != null) {
683 fDocumentHandler.startDocument(locator, encoding, namespaceContext, augs);
705 if (fDocumentHandler != null) {
706 fDocumentHandler.xmlDecl(version, encoding, standalone, augs);
731 if (fDocumentHandler != null) {
732 fDocumentHandler.doctypeDecl(rootElement, publicId, systemId, augs);
751 if (fDocumentHandler !
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DSchemaParsingConfig.java745 fNamespaceScanner.setDocumentHandler(fDocumentHandler);
746 if (fDocumentHandler != null) {
747 fDocumentHandler.setDocumentSource(fNamespaceScanner);
781 fXML11NSDocScanner.setDocumentHandler(fDocumentHandler);
782 if (fDocumentHandler != null) {
783 fDocumentHandler.setDocumentSource(fXML11NSDocScanner);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDOMConfigurationImpl.java170 XMLDocumentHandler fDocumentHandler; field in class:DOMConfigurationImpl
407 fDocumentHandler = documentHandler;
412 return fDocumentHandler;

Completed in 119 milliseconds