Searched refs:Document (Results 101 - 125 of 306) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/swing/
H A DJEditorPane.java364 * Document doc = jEditorPane.getDocument();
365 * doc.putProperty(Document.StreamDescriptionProperty, null);
374 * If the <code>Document</code> is of type
437 Document doc = initializeModel(kit, page);
483 getDocument().putProperty(Document.StreamDescriptionProperty, page);
491 private Document initializeModel(EditorKit kit, URL page) {
492 Document doc = kit.createDefaultDocument();
502 if (doc.getProperty(Document.StreamDescriptionProperty) == null) {
503 doc.putProperty(Document.StreamDescriptionProperty, page);
511 private int getAsynchronousLoadPriority(Document do
[all...]
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMX509Data.java38 import org.w3c.dom.Document;
142 Document ownerDoc = DOMUtils.getOwnerDocument(parent);
173 private void marshalSKI(byte[] skid, Node parent, Document doc,
182 private void marshalSubjectName(String name, Node parent, Document doc,
191 private void marshalCert(X509Certificate cert, Node parent, Document doc,
205 private void marshalCRL(X509CRL crl, Node parent, Document doc,
H A DDOMKeyInfoFactory.java37 import org.w3c.dom.Document;
122 element = ((Document) node).getDocumentElement();
133 throw new MarshalException("Document implementation must " +
H A DDOMManifest.java36 import org.w3c.dom.Document;
127 Document ownerDoc = DOMUtils.getOwnerDocument(parent);
H A DDOMSignatureProperties.java35 import org.w3c.dom.Document;
124 Document ownerDoc = DOMUtils.getOwnerDocument(parent);
H A DDOMX509IssuerSerial.java36 import org.w3c.dom.Document;
98 Document ownerDoc = DOMUtils.getOwnerDocument(parent);
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DElementProxy.java32 import org.w3c.dom.Document;
54 protected Document _doc = null;
71 public ElementProxy(Document doc) {
73 throw new RuntimeException("Document is null");
120 Document doc, String namespace, String localName
152 public static Element createElementForFamily(Document doc, String namespace, String localName) {
221 * @return the Document where this element is contained.
223 public Document getDocument() {
H A DXMLUtils.java40 import org.w3c.dom.Document;
262 * @param doc the factory Document
266 public static Element createElementInSignatureSpace(Document doc,
270 throw new RuntimeException("Document is null");
323 * {@link Document}. {@link Node#getOwnerDocument} returns <CODE>null</CODE>
324 * if the {@link Node} is a {@link Document}.
329 public static Document getOwnerDocument(Node node) {
332 return (Document) node;
347 * {@link Document}. {@link Node#getOwnerDocument} returns <CODE>null</CODE>
348 * if the {@link Node} is a {@link Document}
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DDefaultNode.java25 import org.w3c.dom.Document;
99 public Document getOwnerDocument() {
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DXPathAPI.java31 import org.w3c.dom.Document;
233 ? ((Document) namespaceNode).getDocumentElement() : namespaceNode);
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DCommentView.java57 Document doc = getDocument();
82 Document doc = getDocument();
H A DLineView.java165 Document d = getDocument();
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/content/
H A DRetrievalMethod.java30 import org.w3c.dom.Document;
77 public RetrievalMethod(Document doc, String URI, Transforms transforms,
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/signature/
H A DSignatureProperties.java29 import org.w3c.dom.Document;
49 public SignatureProperties(Document doc) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/parser/
H A DDOMForestScanner.java29 import org.w3c.dom.Document;
80 * Generates the whole set of SAX events from the given Document
83 public void scan( Document d, ContentHandler contentHandler ) throws SAXException {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/internalizer/
H A DDOMForestScanner.java30 import org.w3c.dom.Document;
81 * Generates the whole set of SAX events from the given Document
84 public void scan( Document d, ContentHandler contentHandler ) throws SAXException {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/
H A DStartTag.java73 final Document document;
80 public StartTag(Document document, String uri, String localName) {
/openjdk7/jdk/test/javax/xml/crypto/dsig/
H A DSignatureValidator.java33 import org.w3c.dom.Document;
60 Document doc = dbf.newDocumentBuilder().parse(new File(dir, fn));
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/msg/
H A DXMLMessages_de.properties37 # Document messages
54 # 2.8 Prolog and Document Type Declaration
73 # 2.9 Standalone Document Declaration
96 # Messages common to Document and DTD
118 # 2.8 Prolog and Document Type Declaration
171 # 2.8 Prolog and Document Type Declaration
H A DXMLMessages_sv.properties37 # Document messages
54 # 2.8 Prolog and Document Type Declaration
73 # 2.9 Standalone Document Declaration
96 # Messages common to Document and DTD
118 # 2.8 Prolog and Document Type Declaration
171 # 2.8 Prolog and Document Type Declaration
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/utils/
H A DDOM2Helper.java33 import org.w3c.dom.Document;
54 * dropped method getElementByID(String id, Document doc)
56 * dropped field Document m_doc;
/openjdk7/jaxp/src/org/w3c/dom/
H A DDocument.java45 * The <code>Document</code> interface represents the entire HTML or XML
49 * cannot exist outside the context of a <code>Document</code>, the
50 * <code>Document</code> interface also contains the factory methods needed
53 * <code>Document</code> within whose context they were created.
54 * <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
56 public interface Document extends Node { interface in inherits:Node
58 * The Document Type Declaration (see <code>DocumentType</code>)
65 * child node of this <code>Document</code>. This node can be set at
70 * <code>Document</code> objects supporting additional features than the
113 * <code>Document
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DSAEditorPane.java52 Document doc = getDocument();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/marshaller/
H A DSAX2DOMEx.java41 import org.w3c.dom.Document;
62 * Document object that owns the specified node.
64 protected final Document document;
83 if (node instanceof Document) {
84 this.document = (Document) node;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/unmarshaller/
H A DDOMScanner.java37 import org.w3c.dom.Document;
87 if( node instanceof Document ) {
88 scan( (Document)node );
94 public void scan( Document doc ) throws SAXException {

Completed in 59 milliseconds

1234567891011>>