Searched refs:DTD (Results 1 - 25 of 37) sorted by relevance

12

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/
H A DLanguage.java32 DTD, enum constant in enum:Language
/openjdk7/jaxp/src/javax/xml/stream/
H A DXMLStreamConstants.java98 * Indicates an event is a DTD
99 * @see javax.xml.stream.events.DTD
101 public static final int DTD=11; field in interface:XMLStreamConstants
H A DXMLEventFactory.java46 * @see javax.xml.stream.events.DTD
413 * @return a DTD event
415 public abstract DTD createDTD(String dtd);
/openjdk7/jaxp/src/javax/xml/stream/events/
H A DDTD.java40 public interface DTD extends XMLEvent { interface in inherits:XMLEvent
44 * the internal DTD subset.
53 * Returns an implementation defined representation of the DTD.
59 * Return a List containing the notations declared in the DTD.
68 * both external and internal, declared in the DTD.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/events/
H A DDTDEvent.java32 import javax.xml.stream.events.DTD;
39 public class DTDEvent extends EventBase implements DTD{
47 setEventType(DTD);
51 setEventType(DTD);
57 * the internal DTD subset.
72 * both external and internal, declared in the DTD.
82 * Return a List containing the notations declared in the DTD.
92 *Returns an implementation defined representation of the DTD.
H A DUtil.java68 case XMLStreamConstants.DTD:
69 return "DTD";
H A DStAXEventWriter.java89 case XMLEvent.DTD:{
90 DTD dtd = (DTD)event ;
H A DEventBase.java212 case DTD:
H A DStAXEventAllocatorBase.java178 case XMLEvent.DTD:{
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DParserDelegator.java55 private static synchronized DTD getDefaultDTD() {
58 DTD dtd = (DTD) appContext.get(DTD_KEY);
61 DTD _dtd = null;
65 _dtd = DTD.getDTD(nm);
78 protected static DTD createDTD(DTD dtd, String name) {
H A DDTD.java47 * The representation of an SGML DTD. DTD describes a document
50 * entities defined in the DTD.
59 class DTD implements DTDConstants { class in inherits:DTDConstants
84 * Creates a new DTD with the specified name.
85 * @param name the name, as a <code>String</code> of the new DTD
87 protected DTD(String name) { method in class:DTD
96 * Gets the name of the DTD.
97 * @return the name of the DTD
122 * Returns <code>true</code> if the element is part of the DTD,
[all...]
H A DDocumentParser.java38 * A Parser for HTML Documents (actually, you can specify a DTD, but
88 * <li>If the DTD does not contain an definition for the element, or the
91 * <li>If the DTD contains an explicit value, as in:
115 public DocumentParser(DTD dtd) {
/openjdk7/jdk/test/javax/swing/Security/6938813/
H A Dbug6938813.java36 import javax.swing.text.html.parser.DTD;
58 assertTrue(DTD.getDTD(DTD_KEY).getName().equals(DTD_KEY), "DTD.getDTD() mixed AppContexts");
61 DTD invalidDtd = DTD.getDTD("invalid DTD");
63 DTD.putDTDHash(DTD_KEY, invalidDtd);
65 assertTrue(DTD.getDTD(DTD_KEY) == invalidDtd, "Something wrong with DTD.getDTD()");
71 // Init default DTD
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/
H A DConst.java55 /** URI to represent DTD. */
56 public static final String DTD = "DTD"; field in class:Const
/openjdk7/jaxp/src/com/sun/xml/internal/stream/events/
H A DDTDEvent.java28 import javax.xml.stream.events.DTD;
36 public class DTDEvent extends DummyEvent implements DTD{
83 *Returns an implementation defined representation of the DTD.
92 setEventType(XMLEvent.DTD);
H A DXMLEventAllocatorImpl.java148 case XMLEvent.DTD:{
/openjdk7/jaxp/src/com/sun/xml/internal/stream/writers/
H A DXMLEventWriterImpl.java35 import javax.xml.stream.events.DTD;
82 case XMLEvent.DTD:{
83 DTD dtd = (DTD)xMLEvent ;
84 if (DEBUG)System.out.println("Adding DTD = " + dtd.toString());
/openjdk7/jdk/make/tools/src/build/tools/dtdbuilder/
H A DDTDInputStream.java43 * @see DTD
50 public DTD dtd;
60 public DTDInputStream(InputStream in, DTD dtd) throws IOException {
H A DDTDBuilder.java47 * The representation of an SGML DTD. This is produced by the DTDParser.
48 * The resulting DTD object describes a document syntax and is needed
51 * in the DTD.
61 class DTDBuilder extends DTD {
71 * Create a new DTD.
80 * reproduce a (virtually) identical DTD.
84 out.writeInt(DTD.FILE_VERSION);
280 * Generate a class representing this DTD.
299 System.err.println("Could not open DTD file "+argv[0]);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DOutputFormat.java67 public static class DTD class in class:OutputFormat
73 public static final String HTMLPublicId = "-//W3C//DTD HTML 4.01//EN";
85 "-//W3C//DTD XHTML 1.0 Strict//EN";
91 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";
625 * Sets document DTD standalone. The public and system
629 * @param standalone True if document DTD is standalone
912 return DTD.XHTMLPublicId;
936 return DTD.XHTMLSystemId;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLStreamReaderImpl.java309 /** Returns the current value of the parse event as a string, this returns the string value of a CHARACTERS event, returns the value of a COMMENT, the replacement value for an ENTITY_REFERENCE, the string value of a CDATA section, the string value for a SPACE event, or the String value of the internal subset of the DTD. If an ENTITY_REFERENCE has been resolved, any character data will be reported as CHARACTERS events.
572 // if this error occured trying to resolve the external DTD subset
580 fEventType = XMLEvent.DTD;
586 + "Exception scanning External DTD Subset. "
587 + "True contents of DTD cannot be determined. "
591 return XMLEvent.DTD;
646 case XMLEvent.DTD:
647 return "DTD";
1036 * or the String value of the DTD
1064 else if(fEventType == XMLEvent.DTD){
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/xml/
H A DXMLStreamReaderToXMLStreamWriter.java112 case XMLStreamConstants.DTD :
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DStAXEvent2SAX.java176 case XMLStreamConstants.DTD :
214 case XMLStreamConstants.DTD :
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/istack/internal/
H A DXMLStreamReaderToContentHandler.java154 case XMLStreamConstants.DTD :
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/factory/
H A DStAXEventFactory.java317 * @return a DTD event
319 public DTD createDTD(String dtd) {

Completed in 72 milliseconds

12