org.w3c.dom

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » w3c » org.w3c.dom 
org.w3c.dom
org.w3c.dom package Provides the interfaces for the Document Object Model (DOM) which is a component API of the Java API for XML Processing. The Document Object Model Level 2 Core API allows programs to dynamically access and update the content and structure of documents. See the specification for more information. @since JDK1.4
Java Source File NameTypeComment
Attr.javaInterface The Attr interface represents an attribute in an Element object.
CDATASection.javaInterface CDATA sections are used to escape blocks of text containing characters that would otherwise be regarded as markup.
CharacterData.javaInterface The CharacterData interface extends Node with a set of attributes and methods for accessing character data in the DOM.
Comment.javaInterface This interface inherits from CharacterData and represents the content of a comment, i.e., all the characters between the starting ' <!--' and ending '-->'.
Document.javaInterface The Document interface represents the entire HTML or XML document.
DocumentFragment.javaInterface DocumentFragment is a "lightweight" or "minimal" Document object.
DocumentType.javaInterface Each Document has a doctype attribute whose value is either null or a DocumentType object.
DOMConfiguration.javaInterface The DOMConfiguration interface represents the configuration of a document and maintains a table of recognized parameters.
DOMError.javaInterface DOMError is an interface that describes an error.
DOMErrorHandler.javaInterface DOMErrorHandler is a callback interface that the DOM implementation can call when reporting errors that happens while processing XML data, or when doing some other processing (e.g.
DOMException.javaClass DOM operations only raise exceptions in "exceptional" circumstances, i.e., when an operation is impossible to perform (either for logical reasons, because data is lost, or because the implementation has become unstable).
DOMImplementation.javaInterface The DOMImplementation interface provides a number of methods for performing operations that are independent of any particular instance of the document object model.
DOMImplementationList.javaInterface The DOMImplementationList interface provides the abstraction of an ordered collection of DOM implementations, without defining or constraining how this collection is implemented.
DOMImplementationSource.javaInterface This interface permits a DOM implementer to supply one or more implementations, based upon requested features and versions, as specified in .
DOMLocator.javaInterface DOMLocator is an interface that describes a location (e.g.
DOMStringList.javaInterface The DOMStringList interface provides the abstraction of an ordered collection of DOMString values, without defining or constraining how this collection is implemented.
Element.javaInterface The Element interface represents an element in an HTML or XML document.
Entity.javaInterface This interface represents a known entity, either parsed or unparsed, in an XML document.
EntityReference.javaInterface EntityReference nodes may be used to represent an entity reference in the tree.
NamedNodeMap.javaInterface Objects implementing the NamedNodeMap interface are used to represent collections of nodes that can be accessed by name.
NameList.javaInterface The NameList interface provides the abstraction of an ordered collection of parallel pairs of name and namespace values (which could be null values), without defining or constraining how this collection is implemented.
Node.javaInterface The Node interface is the primary datatype for the entire Document Object Model.
NodeList.javaInterface The NodeList interface provides the abstraction of an ordered collection of nodes, without defining or constraining how this collection is implemented.
Notation.javaInterface This interface represents a notation declared in the DTD.
ProcessingInstruction.javaInterface The ProcessingInstruction interface represents a "processing instruction", used in XML as a way to keep processor-specific information in the text of the document.

No lexical check is done on the content of a processing instruction and it is therefore possible to have the character sequence "?>" in the content, which is illegal a processing instruction per section 2.6 of [XML 1.0].

Text.javaInterface The Text interface inherits from CharacterData and represents the textual content (termed character data in XML) of an Element or Attr.
TypeInfo.javaInterface The TypeInfo interface represents a type referenced from Element or Attr nodes, specified in the schemas associated with the document.
UserDataHandler.javaInterface When associating an object to a key on a node using Node.setUserData() the application can provide a handler that gets called when the node the object is associated to is being cloned, imported, or renamed.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.