Searched refs:doctypeSystem (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DToXMLSAXHandler.java656 String doctypeSystem = getDoctypeSystem();
657 if (doctypeSystem != null && m_lexHandler != null)
660 if (doctypeSystem != null)
664 doctypeSystem);
H A DToHTMLSAXHandler.java534 String doctypeSystem = getDoctypeSystem();
536 if ((doctypeSystem != null) || (doctypePublic != null)) {
541 doctypeSystem);
H A DSerializerBase.java608 * @param doctypeSystem the system identifier to be used in the DOCTYPE
611 public void setDoctypeSystem(String doctypeSystem) argument
613 this.m_doctypeSystem = doctypeSystem;
617 * @param doctypeSystem the system identifier to be used in the DOCTYPE
622 public void setDoctype(String doctypeSystem, String doctypePublic) argument
624 this.m_doctypeSystem = doctypeSystem;
H A DToHTMLStream.java674 String doctypeSystem = getDoctypeSystem();
676 if ((null != doctypeSystem) || (null != doctypePublic))
690 if (null != doctypeSystem)
697 writer.write(doctypeSystem);
H A DToStream.java1882 String doctypeSystem = getDoctypeSystem();
1883 if (null != doctypeSystem)
1890 writer.write(doctypeSystem);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DTransformerImpl.java1024 String doctypeSystem = null;
1041 doctypeSystem = value;
1110 if (doctypePublic != null || doctypeSystem != null) {
1111 handler.setDoctype(doctypeSystem, doctypePublic);

Completed in 68 milliseconds