Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.apache.html.dom.* (62)

Package Samples:

org.apache.html.dom

Classes:

HTMLDocumentImpl: Implements an HTML document. Provides access to the top level element in the document, its body and title. Several methods create new nodes of all basic types (comment, text, element, etc.). These methods create new nodes but do not place them in the document tree. The nodes may be placed in the document tree using Node.appendChild(org.w3c.dom.Node) > Node.appendChild(org.w3c.dom.Node) 55 or Node.insertBefore(org.w3c.dom.Node, org.w3c.dom.Node) > Node.insertBefore(org.w3c.dom.Node, org.w3c.dom.Node) 55 , or they may be placed in some other document tree. Note: <FRAMESET> documents are not ...
HTMLCollectionImpl: Implements org.w3c.dom.html.HTMLCollection to traverse any named elements on a org.w3c.dom.html.HTMLDocument . The elements type to look for is identified in the constructor by code. This collection is not optimized for traversing large trees. The collection has to meet two requirements: it has to be live, and it has to traverse depth first and always return results in that order. As such, using an object container (such as java.util.Vector ) is expensive on insert/remove operations. Instead, the collection has been implemented using three traversing functions. As a result, operations on large ...
HTMLElementImpl: Implements an HTML-specific element, an org.w3c.dom.Element that will only appear inside HTML documents. This element extends org.apache.xerces.dom.ElementImpl by adding methods for directly manipulating HTML-specific attributes. All HTML elements gain access to the id , title , lang , dir and class attributes. Other elements add their own specific attributes.
HTMLDOMImplementationImpl: Provides number of methods for performing operations that are independent of any particular instance of the document object model. This class is unconstructable, the only way to obtain an instance of a DOM implementation is by calling the static method DOMImplementationImpl.getDOMImplementation() > DOMImplementationImpl.getDOMImplementation() 55 .
ObjectFactory: This class is duplicated for each JAXP subpackage so keep it in sync. It is package private and therefore is not exposed as part of the JAXP API. This code is designed to implement the JAXP 1.1 spec pluggability feature and is designed to run on JDK version 1.1 and later, and to compile on JDK 1.2 and onward. The code also runs both as part of an unbundled jar file and when bundled as part of the JDK.
CollectionIndex: CollectionImpl#item must traverse down the tree and decrement the index until it matches an element who's index is zero. Since integers are passed by value, this class servers to pass the index into each recursion by reference. It encompasses all the operations that need be performed on the index, although direct access is possible.
SecuritySupport: This class is duplicated for each JAXP subpackage so keep it in sync. It is package private and therefore is not exposed as part of the JAXP API. Base class with security related methods that work on JDK 1.1.
SecuritySupport12: This class is duplicated for each JAXP subpackage so keep it in sync. It is package private and therefore is not exposed as part of the JAXP API. Security related methods that only work on J2SE 1.2 and newer.
HTMLBuilder: This is a SAX document handler that is used to build an HTML document. It can build a document from any SAX parser, but is specifically tuned for working with the OpenXML HTML parser.
HTMLFormControl: Identifies control in a form, so they may be collected in a form elements collection. All form control elements implement this empty interface.
NameNodeListImpl: This class implements the DOM's NodeList behavior for HTMLDocuemnt.getElementsByName().
HTMLAnchorElementImpl
HTMLAppletElementImpl
HTMLAreaElementImpl
HTMLBRElementImpl
HTMLBaseElementImpl
HTMLBaseFontElementImpl
HTMLBodyElementImpl
HTMLButtonElementImpl
HTMLDListElementImpl
HTMLDirectoryElementImpl
HTMLDivElementImpl
HTMLFieldSetElementImpl
HTMLFontElementImpl

Home | Contact Us | Privacy Policy | Terms of Service