Java Doc for HTMLCollectionImpl.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) 


java.lang.Object
   org.ozoneDB.xml.dom.CollectionImpl
      org.ozoneDB.xml.dom.html.HTMLCollectionImpl

HTMLCollectionImpl
final class HTMLCollectionImpl extends CollectionImpl implements HTMLCollection(Code)
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 documents will result in traversal of the entire document tree and consume a considerable amount of time.

Note that synchronization on the traversed document cannot be achieved. The document itself cannot be locked, and locking each traversed node is likely to lead to a dead lock condition. Therefore, there is a chance of the document being changed as results are fetched; in all likelihood, the results might be out dated, but not erroneous.
version:
   $Revision: 1.1 $ $Date: 2001/12/18 11:03:24 $
author:
   Assaf Arkin
See Also:   org.w3c.dom.html.HTMLCollection
See Also:   org.openxml.dom.CollectionImpl



Field Summary
final static  shortANCHOR
     Request collection of all anchors in document: <A> elements that have a name attribute.
final static  shortAPPLET
     Request collection of all Applets in document: <APPLET> and <OBJECT> elements (<OBJECT> must contain an Applet).
final static  shortAREA
     Request collection of all areas in map: <AREA> element in <MAP> (non recursive).
final static  shortCELL
     Request collection of all cells in row: <TD> elements in <TR> (non recursive).
final static  shortELEMENT
     Request collection of all form elements: <INPUT>, <BUTTON>, <SELECT>, <TEXT> and <TEXTAREA> elements inside form <FORM>.
final static  shortFORM
     Request collection of all forms in document: <FORM> elements.
final static  shortIMAGE
     Request collection of all images in document: <IMAGE> elements.
final static  shortLINK
     Request collection of all links in document: <A> and <AREA> elements (must have a href attribute).
final static  shortOPTION
     Request collection of all options in selection: <OPTION> elments in <SELECT> or <OPTGROUP>.
final static  shortROW
     Request collection of all rows in table: <TR> elements in table or table section.
final static  shortTBODY
     Request collection of all table bodies in table: <TBODY> element in table <TABLE> (non recursive).

Constructor Summary
 HTMLCollectionImpl(HTMLElement topLevel, short lookingFor)
     Construct a new collection that retrieves element of the specific type (lookingFor) from the specific document portion (topLevel).

Method Summary
protected  booleancollectionMatch(Element elem, String name)
     Determines if current element matches based on what we're looking for. The element is passed along with an optional identifier name.
protected  booleanrecurse()
     Returns true if scanning methods should iterate through the collection. When looking for elements in the document, recursing is needed to traverse the full document tree.

Field Detail
ANCHOR
final static short ANCHOR(Code)
Request collection of all anchors in document: <A> elements that have a name attribute.



APPLET
final static short APPLET(Code)
Request collection of all Applets in document: <APPLET> and <OBJECT> elements (<OBJECT> must contain an Applet).



AREA
final static short AREA(Code)
Request collection of all areas in map: <AREA> element in <MAP> (non recursive).



CELL
final static short CELL(Code)
Request collection of all cells in row: <TD> elements in <TR> (non recursive).



ELEMENT
final static short ELEMENT(Code)
Request collection of all form elements: <INPUT>, <BUTTON>, <SELECT>, <TEXT> and <TEXTAREA> elements inside form <FORM>.



FORM
final static short FORM(Code)
Request collection of all forms in document: <FORM> elements.



IMAGE
final static short IMAGE(Code)
Request collection of all images in document: <IMAGE> elements.



LINK
final static short LINK(Code)
Request collection of all links in document: <A> and <AREA> elements (must have a href attribute).



OPTION
final static short OPTION(Code)
Request collection of all options in selection: <OPTION> elments in <SELECT> or <OPTGROUP>.



ROW
final static short ROW(Code)
Request collection of all rows in table: <TR> elements in table or table section.



TBODY
final static short TBODY(Code)
Request collection of all table bodies in table: <TBODY> element in table <TABLE> (non recursive).




Constructor Detail
HTMLCollectionImpl
HTMLCollectionImpl(HTMLElement topLevel, short lookingFor)(Code)
Construct a new collection that retrieves element of the specific type (lookingFor) from the specific document portion (topLevel).
Parameters:
  topLevel - The element underneath which the collection exists
Parameters:
  lookingFor - Code indicating what elements to look for




Method Detail
collectionMatch
protected boolean collectionMatch(Element elem, String name)(Code)
Determines if current element matches based on what we're looking for. The element is passed along with an optional identifier name. If the element is the one we're looking for, return true. If the name is also specified, the name must match the id attribute (match name first for anchors).
Parameters:
  elem - The current element
Parameters:
  name - The identifier name or null The element matches what we're looking for



recurse
protected boolean recurse()(Code)
Returns true if scanning methods should iterate through the collection. When looking for elements in the document, recursing is needed to traverse the full document tree. When looking inside a specific element (e.g. for a cell inside a row), recursing can lead to erroneous results. True if methods should recurse to traverse entire tree



Methods inherited from org.ozoneDB.xml.dom.CollectionImpl
protected boolean collectionMatch(Element elem, String name)(Code)(Java Doc)
final public int getLength()(Code)(Java Doc)
final public Node item(int index)(Code)(Java Doc)
final public Node namedItem(String name)(Code)(Java Doc)
protected boolean recurse()(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(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.