Java Doc for AttributeMap.java in  » XML » xerces-2_9_1 » org » apache » xerces » dom » 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 » XML » xerces 2_9_1 » org.apache.xerces.dom 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.xerces.dom.NamedNodeMapImpl
      org.apache.xerces.dom.AttributeMap

AttributeMap
public class AttributeMap extends NamedNodeMapImpl (Code)
AttributeMap inherits from NamedNodeMapImpl and extends it to deal with the specifics of storing attributes. These are:
  • managing ownership of attribute nodes
  • managing default attributes
  • firing mutation events

This class doesn't directly support mutation events, however, it notifies the document when mutations are performed so that the document class do so.
version:
   $Id: AttributeMap.java 449328 2006-09-23 22:58:23Z mrglavas $



Field Summary
final static  longserialVersionUID
     Serialization version.

Constructor Summary
protected  AttributeMap(ElementImpl ownerNode, NamedNodeMapImpl defaults)
     Constructs a named node map.

Method Summary
final protected  intaddItem(Node arg)
    
protected  voidcloneContent(NamedNodeMapImpl srcmap)
    
public  NamedNodeMapImplcloneMap(NodeImpl ownerNode)
     Cloning a NamedNodeMap is a DEEP OPERATION; it always clones all the nodes contained in the map.
final protected  NodeinternalRemoveNamedItem(String name, boolean raiseEx)
     Internal removeNamedItem method allowing to specify whether an exception must be thrown if the specified name is not found.
final protected  NodeinternalRemoveNamedItemNS(String namespaceURI, String name, boolean raiseEx)
     Internal removeNamedItemNS method allowing to specify whether an exception must be thrown if the specified local name and namespace URI is not found.
 voidmoveSpecifiedAttributes(AttributeMap srcmap)
    
protected  voidreconcileDefaults(NamedNodeMapImpl defaults)
     Get this AttributeMap in sync with the given "defaults" map.
protected  NoderemoveItem(Node item, boolean addDefault)
     NON-DOM: Remove the node object NOTE: Specifically removes THIS NODE -- not the node with this name, nor the node with these contents.
public  NoderemoveNamedItem(String name)
    
public  NoderemoveNamedItemNS(String namespaceURI, String name)
     Introduced in DOM Level 2.
 NodesafeRemoveNamedItem(String name)
     Same as removeNamedItem except that it simply returns null if the specified name is not found.
 NodesafeRemoveNamedItemNS(String namespaceURI, String name)
     Same as removeNamedItem except that it simply returns null if the specified local name and namespace URI is not found.
public  NodesetNamedItem(Node arg)
     Adds an attribute using its nodeName attribute.
See Also:   org.w3c.dom.NamedNodeMap.setNamedItem If the new Node replaces an existing node the replaced Node isreturned, otherwise null is returned.
public  NodesetNamedItemNS(Node arg)
     Adds an attribute using its namespaceURI and localName.
See Also:   org.w3c.dom.NamedNodeMap.setNamedItem If the new Node replaces an existing node the replaced Node isreturned, otherwise null is returned.

Field Detail
serialVersionUID
final static long serialVersionUID(Code)
Serialization version.




Constructor Detail
AttributeMap
protected AttributeMap(ElementImpl ownerNode, NamedNodeMapImpl defaults)(Code)
Constructs a named node map.




Method Detail
addItem
final protected int addItem(Node arg)(Code)



cloneContent
protected void cloneContent(NamedNodeMapImpl srcmap)(Code)
Override parent's method to set the ownerNode correctly



cloneMap
public NamedNodeMapImpl cloneMap(NodeImpl ownerNode)(Code)
Cloning a NamedNodeMap is a DEEP OPERATION; it always clones all the nodes contained in the map.



internalRemoveNamedItem
final protected Node internalRemoveNamedItem(String name, boolean raiseEx)(Code)
Internal removeNamedItem method allowing to specify whether an exception must be thrown if the specified name is not found.



internalRemoveNamedItemNS
final protected Node internalRemoveNamedItemNS(String namespaceURI, String name, boolean raiseEx)(Code)
Internal removeNamedItemNS method allowing to specify whether an exception must be thrown if the specified local name and namespace URI is not found.



moveSpecifiedAttributes
void moveSpecifiedAttributes(AttributeMap srcmap)(Code)
Move specified attributes from the given map to this one



reconcileDefaults
protected void reconcileDefaults(NamedNodeMapImpl defaults)(Code)
Get this AttributeMap in sync with the given "defaults" map.
Parameters:
  defaults - The default attributes map to sync with.



removeItem
protected Node removeItem(Node item, boolean addDefault) throws DOMException(Code)
NON-DOM: Remove the node object NOTE: Specifically removes THIS NODE -- not the node with this name, nor the node with these contents. If node does not belong to this named node map, we throw a DOMException.
Parameters:
  item - The node to remove
Parameters:
  addDefault - true -- magically add default attribute Removed node
exception:
  DOMException -



removeNamedItem
public Node removeNamedItem(String name) throws DOMException(Code)



removeNamedItemNS
public Node removeNamedItemNS(String namespaceURI, String name) throws DOMException(Code)
Introduced in DOM Level 2.

Removes an attribute specified by local name and namespace URI.
Parameters:
  namespaceURI - The namespace URI of the node to remove.When it is null or an empty string, thismethod behaves like removeNamedItem.
Parameters:
  name - The local name of the node to remove. If theremoved attribute is known to have a defaultvalue, an attribute immediately appearscontaining the default value. Node The node removed from the map if a node with sucha local name and namespace URI exists.
throws:
  NOT_FOUND_ERR - : Raised if there is no node namedname in the map.




safeRemoveNamedItem
Node safeRemoveNamedItem(String name)(Code)
Same as removeNamedItem except that it simply returns null if the specified name is not found.



safeRemoveNamedItemNS
Node safeRemoveNamedItemNS(String namespaceURI, String name)(Code)
Same as removeNamedItem except that it simply returns null if the specified local name and namespace URI is not found.



setNamedItem
public Node setNamedItem(Node arg) throws DOMException(Code)
Adds an attribute using its nodeName attribute.
See Also:   org.w3c.dom.NamedNodeMap.setNamedItem If the new Node replaces an existing node the replaced Node isreturned, otherwise null is returned.
Parameters:
  arg - An Attr node to store in this map.
exception:
  org.w3c.dom.DOMException - The exception description.



setNamedItemNS
public Node setNamedItemNS(Node arg) throws DOMException(Code)
Adds an attribute using its namespaceURI and localName.
See Also:   org.w3c.dom.NamedNodeMap.setNamedItem If the new Node replaces an existing node the replaced Node isreturned, otherwise null is returned.
Parameters:
  arg - A node to store in a named node map.



Fields inherited from org.apache.xerces.dom.NamedNodeMapImpl
final protected static short CHANGED(Code)(Java Doc)
final protected static short HASDEFAULTS(Code)(Java Doc)
final protected static short READONLY(Code)(Java Doc)
protected short flags(Code)(Java Doc)
protected Vector nodes(Code)(Java Doc)
protected NodeImpl ownerNode(Code)(Java Doc)
final static long serialVersionUID(Code)(Java Doc)

Methods inherited from org.apache.xerces.dom.NamedNodeMapImpl
protected int addItem(Node arg)(Code)(Java Doc)
final boolean changed()(Code)(Java Doc)
final void changed(boolean value)(Code)(Java Doc)
protected void cloneContent(NamedNodeMapImpl srcmap)(Code)(Java Doc)
public NamedNodeMapImpl cloneMap(NodeImpl ownerNode)(Code)(Java Doc)
protected Vector cloneMap(Vector list)(Code)(Java Doc)
protected int findNamePoint(String name, int start)(Code)(Java Doc)
protected int findNamePoint(String namespaceURI, String name)(Code)(Java Doc)
protected Object getItem(int index)(Code)(Java Doc)
public int getLength()(Code)(Java Doc)
public Node getNamedItem(String name)(Code)(Java Doc)
protected int getNamedItemIndex(String namespaceURI, String localName)(Code)(Java Doc)
public Node getNamedItemNS(String namespaceURI, String localName)(Code)(Java Doc)
boolean getReadOnly()(Code)(Java Doc)
final boolean hasDefaults()(Code)(Java Doc)
final void hasDefaults(boolean value)(Code)(Java Doc)
final boolean isReadOnly()(Code)(Java Doc)
final void isReadOnly(boolean value)(Code)(Java Doc)
public Node item(int index)(Code)(Java Doc)
protected boolean precedes(Node a, Node b)(Code)(Java Doc)
public void removeAll()(Code)(Java Doc)
protected void removeItem(int index)(Code)(Java Doc)
public Node removeNamedItem(String name) throws DOMException(Code)(Java Doc)
public Node removeNamedItemNS(String namespaceURI, String name) throws DOMException(Code)(Java Doc)
public Node setNamedItem(Node arg) throws DOMException(Code)(Java Doc)
public Node setNamedItemNS(Node arg) throws DOMException(Code)(Java Doc)
protected void setOwnerDocument(CoreDocumentImpl doc)(Code)(Java Doc)
void setReadOnly(boolean readOnly, boolean deep)(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.