Java Doc for HTMLDocumentImpl.java in  » Database-DBMS » Ozone-1.1 » org » ozoneDB » xml » dom » html » Java Source Code / Java DocumentationJava Source Code and Java Documentation

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 geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Database DBMS » Ozone 1.1 » org.ozoneDB.xml.dom.html 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.ozoneDB.xml.dom.NodeImpl
   org.ozoneDB.xml.dom.DocumentImpl
      org.ozoneDB.xml.dom.html.HTMLDocumentImpl

HTMLDocumentImpl
final public class HTMLDocumentImpl extends DocumentImpl implements HTMLDocument(Code)
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 org.w3c.dom.Node.appendChild or org.w3c.dom.Node.insertBefore , or they may be placed in some other document tree.

Note: <FRAMESET> documents are not supported at the moment, neither are direct document writing ( HTMLDocumentImpl.open , HTMLDocumentImpl.write ) and HTTP attribute methods ( HTMLDocumentImpl.getURL , HTMLDocumentImpl.getCookie ).
version:
   $Revision: 1.1 $ $Date: 2001/12/18 11:03:24 $
author:
   Assaf Arkin
See Also:   org.w3c.dom.html.HTMLDocument
See Also:   org.openxml.XMLDocument




Constructor Summary
public  HTMLDocumentImpl()
    

Method Summary
protected  NodecastNewChild(Node newChild)
    
public  Objectclone()
    
public  NodecloneNode(boolean deep)
    
public  voidclose()
    
public  ElementcreateElement(String tagName)
    
public  HTMLCollectiongetAnchors()
    
public  HTMLCollectiongetApplets()
    
public synchronized  HTMLElementgetBody()
    
public  StringgetCookie()
    
public synchronized  ElementgetDocumentElement()
    
public  StringgetDomain()
    
public  ElementgetElementById(String elementId)
    
public  NodeListgetElementsByName(String elementName)
    
public  HTMLCollectiongetForms()
    
public synchronized  HTMLElementgetHead()
     Obtains the <HEAD> element in the document, creating one if does not exist before.
public  HTMLCollectiongetImages()
    
public  HTMLCollectiongetLinks()
    
public  StringgetReferrer()
    
public synchronized  StringgetTitle()
    
public  StringgetURL()
    
public  voidopen()
    
public synchronized  voidsetBody(HTMLElement newBody)
    
public  voidsetCookie(String cookie)
    
public synchronized  voidsetTitle(String newTitle)
    
public  voidwrite(String text)
    
public  voidwriteln(String text)
    


Constructor Detail
HTMLDocumentImpl
public HTMLDocumentImpl()(Code)




Method Detail
castNewChild
protected Node castNewChild(Node newChild) throws DOMException(Code)



clone
public Object clone()(Code)



cloneNode
public Node cloneNode(boolean deep)(Code)



close
public void close()(Code)



createElement
public Element createElement(String tagName) throws DOMException(Code)



getAnchors
public HTMLCollection getAnchors()(Code)



getApplets
public HTMLCollection getApplets()(Code)



getBody
public synchronized HTMLElement getBody()(Code)



getCookie
public String getCookie()(Code)



getDocumentElement
public synchronized Element getDocumentElement()(Code)



getDomain
public String getDomain()(Code)



getElementById
public Element getElementById(String elementId)(Code)



getElementsByName
public NodeList getElementsByName(String elementName)(Code)



getForms
public HTMLCollection getForms()(Code)



getHead
public synchronized HTMLElement getHead()(Code)
Obtains the <HEAD> element in the document, creating one if does not exist before. The <HEAD> element is the first element in the <HTML> in the document. The <HTML> element is obtained by calling HTMLDocumentImpl.getDocumentElement . If the element does not exist, one is created.

Called by HTMLDocumentImpl.getTitle , HTMLDocumentImpl.setTitle , HTMLDocumentImpl.getBody and HTMLDocumentImpl.setBody to assure the document has the <HEAD> element correctly placed. The <HEAD> element




getImages
public HTMLCollection getImages()(Code)



getLinks
public HTMLCollection getLinks()(Code)



getReferrer
public String getReferrer()(Code)



getTitle
public synchronized String getTitle()(Code)



getURL
public String getURL()(Code)



open
public void open()(Code)



setBody
public synchronized void setBody(HTMLElement newBody)(Code)



setCookie
public void setCookie(String cookie)(Code)



setTitle
public synchronized void setTitle(String newTitle)(Code)



write
public void write(String text)(Code)



writeln
public void writeln(String text)(Code)



Methods inherited from org.ozoneDB.xml.dom.DocumentImpl
public void acquire(long lockTimeout) throws RuntimeException(Code)(Java Doc)
public void assignDoctype(DocumentTypeProxy docType)(Code)(Java Doc)
public void clearDocument() throws Exception(Code)(Java Doc)
public Object clone()(Code)(Java Doc)
public synchronized void cloneInto(NodeProxy into, boolean deep)(Code)(Java Doc)
public Node cloneNode(boolean deep)(Code)(Java Doc)
final public Attr createAttribute(String name) throws DOMException(Code)(Java Doc)
final public Attr createAttribute(String name, String defValue) throws DOMException(Code)(Java Doc)
public Attr createAttributeNS(java.lang.String namespaceURI, java.lang.String qualifiedName) throws DOMException(Code)(Java Doc)
final public CDATASection createCDATASection(String data) throws DOMException(Code)(Java Doc)
final public Comment createComment(String data)(Code)(Java Doc)
public Document createDocument(java.lang.String namespaceURI, java.lang.String qualifiedName, DocumentType doctype) throws DOMException(Code)(Java Doc)
final public DocumentFragment createDocumentFragment()(Code)(Java Doc)
public DocumentType createDocumentType(java.lang.String qualifiedName, java.lang.String publicId, java.lang.String systemId) throws DOMException(Code)(Java Doc)
public Element createElement(String tagName) throws DOMException(Code)(Java Doc)
public Element createElementNS(java.lang.String namespaceURI, java.lang.String qualifiedName) throws DOMException(Code)(Java Doc)
final public EntityReference createEntityReference(String name) throws DOMException(Code)(Java Doc)
final public ProcessingInstruction createProcessingInstruction(String target, String data) throws DOMException(Code)(Java Doc)
final public Text createTextNode(String data)(Code)(Java Doc)
public synchronized boolean equals(Object other)(Code)(Java Doc)
public XMLContainerHelper getContainer()(Code)(Java Doc)
final public DocumentType getDoctype()(Code)(Java Doc)
public Element getDocumentElement()(Code)(Java Doc)
public Element getElementById(java.lang.String elementId)(Code)(Java Doc)
final public NodeList getElementsByTagName(String tagName)(Code)(Java Doc)
public NodeList getElementsByTagNameNS(java.lang.String namespaceURI, java.lang.String localName)(Code)(Java Doc)
final public DOMImplementation getImplementation()(Code)(Java Doc)
public short getNodeType()(Code)(Java Doc)
public boolean hasFeature(String feature, String version)(Code)(Java Doc)
public Node importNode(Node importedNode, boolean deep) throws DOMException(Code)(Java Doc)
public void lock() throws RuntimeException(Code)(Java Doc)
public void onDelete() throws Exception(Code)(Java Doc)
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException(Code)(Java Doc)
public void registerElement(String tagName, Class elementClass)(Code)(Java Doc)
public void setContainer(XMLContainerHelper _container)(Code)(Java Doc)
final public void setDoctype(DocumentType docType)(Code)(Java Doc)
public void setElementTypes(Hashtable elementTypes)(Code)(Java Doc)
final public void setNodeValue(String value)(Code)(Java Doc)
final protected boolean supportsChildern()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public void unlock()(Code)(Java Doc)
public void writeExternal(ObjectOutput out) throws IOException(Code)(Java Doc)

Fields inherited from org.ozoneDB.xml.dom.NodeImpl
final public static short ATTLIST_DECL_NODE(Code)(Java Doc)
final public static short ELEMENT_DECL_NODE(Code)(Java Doc)
final public static short PARAM_ENTITY_NODE(Code)(Java Doc)

Methods inherited from org.ozoneDB.xml.dom.NodeImpl
final public synchronized Node appendChild(Node newChild)(Code)(Java Doc)
protected Node castNewChild(Node newChild) throws DOMException(Code)(Java Doc)
final protected Node castOldChild(Node oldChild) throws DOMException(Code)(Java Doc)
public synchronized void cloneInto(NodeProxy into, boolean deep)(Code)(Java Doc)
public NamedNodeMap getAttributes()(Code)(Java Doc)
final public synchronized Node getChild(int index)(Code)(Java Doc)
final public int getChildCount()(Code)(Java Doc)
public NodeList getChildNodes()(Code)(Java Doc)
final public Node getFirstChild()(Code)(Java Doc)
final public Node getLastChild()(Code)(Java Doc)
public java.lang.String getLocalName()(Code)(Java Doc)
public java.lang.String getNamespaceURI()(Code)(Java Doc)
public Node getNextSibling()(Code)(Java Doc)
final public String getNodeName()(Code)(Java Doc)
abstract public short getNodeType()(Code)(Java Doc)
final public String getNodeValue()(Code)(Java Doc)
final public Document getOwnerDocument()(Code)(Java Doc)
public Node getParentNode()(Code)(Java Doc)
public java.lang.String getPrefix()(Code)(Java Doc)
public Node getPreviousSibling()(Code)(Java Doc)
public boolean hasAttributes()(Code)(Java Doc)
final public boolean hasChildNodes()(Code)(Java Doc)
final public void init(DocumentProxy owner, String name, String value, boolean checkName) throws DOMException(Code)(Java Doc)
final public synchronized Node insertBefore(Node newChild, Node refChild) throws DOMException(Code)(Java Doc)
final public boolean isReadOnly()(Code)(Java Doc)
public boolean isSupported(String s, String s1)(Code)(Java Doc)
public void normalize()(Code)(Java Doc)
protected void notifyIterators(Node removedChild)(Code)(Java Doc)
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException(Code)(Java Doc)
final public synchronized Node removeChild(Node oldChild) throws DOMException(Code)(Java Doc)
final public synchronized Node replaceChild(Node newChild, Node oldChild) throws DOMException(Code)(Java Doc)
public void setNextSibling(Node nextNode)(Code)(Java Doc)
final public void setNodeName(String nodeName)(Code)(Java Doc)
public void setNodeValue(String value)(Code)(Java Doc)
public synchronized void setOwnerDocument(Document owner)(Code)(Java Doc)
public void setParentNode(Node newParent)(Code)(Java Doc)
public void setPrefix(java.lang.String prefix) throws DOMException(Code)(Java Doc)
public void setPreviousSibling(Node prevNode)(Code)(Java Doc)
final public synchronized void setReadOnly()(Code)(Java Doc)
public boolean supports(java.lang.String feature, java.lang.String version)(Code)(Java Doc)
public void writeExternal(ObjectOutput out) throws IOException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.