Searched defs:notationDecl (Results 1 - 25 of 32) sorted by relevance

12

/openjdk7/jaxp/src/org/xml/sax/
H A DDTDHandler.java104 public abstract void notationDecl (String name, method in interface:DTDHandler
114 * reported by the {@link #notationDecl notationDecl} event.
130 * @see #notationDecl
H A DHandlerBase.java121 * @see org.xml.sax.DTDHandler#notationDecl
123 public void notationDecl (String name, String publicId, String systemId) method in class:HandlerBase
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/xml/
H A DDtdContext.java68 public void notationDecl(String name, String publicId, String systemId) method in class:DtdContext
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/tools/
H A DResolvingXMLFilter.java219 public void notationDecl (String name, String publicId, String systemId) method in class:ResolvingXMLFilter
222 super.notationDecl(name,publicId,systemId);
H A DResolvingParser.java344 public void notationDecl (String name, String publicId, String systemId) method in class:ResolvingParser
348 dtdHandler.notationDecl(name,publicId,systemId);
/openjdk7/jaxp/src/org/xml/sax/helpers/
H A DDefaultHandler.java139 * @see org.xml.sax.DTDHandler#notationDecl
141 public void notationDecl (String name, String publicId, String systemId) method in class:DefaultHandler
H A DXMLFilterImpl.java422 public void notationDecl (String name, String publicId, String systemId) method in class:XMLFilterImpl
426 dtdHandler.notationDecl(name, publicId, systemId);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/
H A DUnparsedEntityHandler.java183 public void notationDecl(String name, XMLResourceIdentifier identifier, method in class:UnparsedEntityHandler
186 fDTDHandler.notationDecl(name, identifier, augmentations);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DDTDParser.java305 public void notationDecl(String name, XMLResourceIdentifier identifier, method in class:DTDParser
308 } // notationDecl
H A DAbstractXMLDocumentParser.java590 public void notationDecl(String name, XMLResourceIdentifier identifier, method in class:AbstractXMLDocumentParser
593 } // notationDecl(String,XMLResourceIdentifier, Augmentations)
H A DAbstractDOMParser.java2241 public void notationDecl (String name, XMLResourceIdentifier identifier, method in class:AbstractDOMParser
2303 } // notationDecl(String,XMLResourceIdentifier, Augmentations)
H A DAbstractSAXParser.java1071 public void notationDecl(String name, XMLResourceIdentifier identifier, method in class:AbstractSAXParser
1079 fDTDHandler.notationDecl(name, publicId, systemId);
1086 } // notationDecl(String,XMLResourceIdentifier, Augmentations)
H A DDOMParserImpl.java1296 public void notationDecl(String name, XMLResourceIdentifier identifier, Augmentations augmentations) throws XNIException { method in class:DOMParserImpl.AbortHandler
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/
H A DXMLDTDHandler.java321 public void notationDecl(String name, XMLResourceIdentifier identifier, method in interface:XMLDTDHandler
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DDTDHandlerBase.java55 public void notationDecl(String name, String publicId, String systemId) throws SAXException { method in class:DTDHandlerBase
H A DDTDEventListener.java65 public void notationDecl(String name, String publicId, String systemId) method in interface:DTDEventListener
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/sax/
H A DSAXBufferCreator.java229 public void notationDecl (String name, String publicId, String systemId) method in class:SAXBufferCreator
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DTransformerHandlerImpl.java419 * Implements org.xml.sax.DTDHandler.notationDecl()
421 public void notationDecl(String name, String publicId, String systemId) method in class:TransformerHandlerImpl
425 _dtdHandler.notationDecl(name, publicId, systemId);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DDefaultXMLDocumentHandler.java628 public void notationDecl(String name, XMLResourceIdentifier identifier, method in class:DefaultXMLDocumentHandler
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DIncrementalSAXSource_Filter.java410 public void notationDecl(String a, String b, String c) throws SAXException method in class:IncrementalSAXSource_Filter
413 clientDTDHandler.notationDecl(a,b,c);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DBaseMarkupSerializer.java970 public void notationDecl( String name, String publicId, String systemId ) method in class:BaseMarkupSerializer
/openjdk7/jaxp/src/com/sun/xml/internal/stream/dtd/nonvalidating/
H A DDTDGrammar.java720 public void notationDecl(String name, XMLResourceIdentifier identifier, method in class:DTDGrammar
724 XMLNotationDecl notationDecl = new XMLNotationDecl();
725 notationDecl.setValues(name,identifier.getPublicId(),identifier.getLiteralSystemId(),
727 notationDecls.add(notationDecl);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DXMLDTDProcessor.java1226 public void notationDecl(String name, XMLResourceIdentifier identifier, method in class:XMLDTDProcessor
1242 fDTDGrammar.notationDecl(name, identifier, augs);
1244 fDTDHandler.notationDecl(name, identifier, augs);
1247 } // notationDecl(String,XMLResourceIdentifier, Augmentations)
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DValidatorHandlerImpl.java644 public void notationDecl(String name, String publicId, method in class:ValidatorHandlerImpl
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/sax2dtm/
H A DSAX2DTM.java1607 * @see org.xml.sax.DTDHandler#notationDecl
1611 public void notationDecl(String name, String publicId, String systemId) method in class:SAX2DTM

Completed in 2171 milliseconds

12