Java Doc for ElementImpl.java in  » Web-Server » Rimfaxe-Web-Server » 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 » Web Server » Rimfaxe Web Server » org.apache.xerces.dom 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.xerces.dom.NodeImpl
      org.apache.xerces.dom.ChildNode
         org.apache.xerces.dom.ParentNode
            org.apache.xerces.dom.ElementImpl

All known Subclasses:   org.apache.xerces.dom.DeferredElementImpl,  org.apache.wml.dom.WMLElementImpl,  org.apache.html.dom.HTMLElementImpl,  org.apache.xerces.dom.ElementNSImpl,
ElementImpl
public class ElementImpl extends ParentNode implements Element(Code)
Elements represent most of the "markup" and structure of the document. They contain both the data for the element itself (element name and attributes), and any contained nodes, including document text (as children).

Elements may have Attributes associated with them; the API for this is defined in Node, but the function is implemented here. In general, XML applications should retrive Attributes as Nodes, since they may contain entity references and hence be a fairly complex sub-tree. HTML users will be dealing with simple string values, and convenience methods are provided to work in terms of Strings.

ElementImpl does not support Namespaces. ElementNSImpl, which inherits from it, does.
See Also:   ElementNSImpl
author:
   Arnaud Le Hors, IBM
author:
   Joe Kesselman, IBM
author:
   Andy Clark, IBM
author:
   Ralf Pfeiffer, IBM
since:
   PR-DOM-Level-1-19980818.



Field Summary
protected  AttributeMapattributes
     Attributes.
protected  Stringname
     Element name.
final static  longserialVersionUID
     Serialization version.

Constructor Summary
public  ElementImpl(CoreDocumentImpl ownerDoc, String name)
     Factory constructor.
protected  ElementImpl()
    

Method Summary
public  NodecloneNode(boolean deep)
     Return a duplicate copy of this Element.
public  StringgetAttribute(String name)
     Look up a single Attribute by name.
public  StringgetAttributeNS(String namespaceURI, String localName)
     Introduced in DOM Level 2.
public  AttrgetAttributeNode(String name)
     Look up a single Attribute by name.
public  AttrgetAttributeNodeNS(String namespaceURI, String localName)
     Retrieves an Attr node by local name and namespace URI.
public  NamedNodeMapgetAttributes()
     Retrieve all the Attributes as a set.
protected  NamedNodeMapImplgetDefaultAttributes()
     Get the default attributes.
public  NodeListgetElementsByTagName(String tagname)
     Returns a NodeList of all descendent nodes (children, grandchildren, and so on) which are Elements and which have the specified tag name.

Note: NodeList is a "live" view of the DOM.

public  NodeListgetElementsByTagNameNS(String namespaceURI, String localName)
     Introduced in DOM Level 2.
public  StringgetNodeName()
    
public  shortgetNodeType()
     A short integer indicating what type of node this is.
public  StringgetTagName()
     Returns the name of the Element.
public  booleanhasAttribute(String name)
     Introduced in DOM Level 2.
public  booleanhasAttributeNS(String namespaceURI, String localName)
     Introduced in DOM Level 2.
public  booleanhasAttributes()
     Introduced in DOM Level 2.
public  voidnormalize()
     In "normal form" (as read from a source file), there will never be two Text children in succession.
protected  voidreconcileDefaultAttributes()
     Reconcile default attributes.
public  voidremoveAttribute(String name)
     Remove the named attribute from this Element.
public  voidremoveAttributeNS(String namespaceURI, String localName)
     Introduced in DOM Level 2.
public  AttrremoveAttributeNode(Attr oldAttr)
     Remove the specified attribute/value pair.
public  voidsetAttribute(String name, String value)
     Add a new name/value pair, or replace the value of the existing attribute having that name.
public  voidsetAttributeNS(String namespaceURI, String localName, String value)
     Introduced in DOM Level 2.
public  AttrsetAttributeNode(Attr newAttr)
     Add a new attribute/value pair, or replace the value of the existing attribute with that name.

This method allows you to add an Attribute that has already been constructed, and hence avoids the limitations of the simple setAttribute() call.

public  AttrsetAttributeNodeNS(Attr newAttr)
     Introduced in DOM Level 2.
 voidsetOwnerDocument(CoreDocumentImpl doc)
    
public  voidsetReadOnly(boolean readOnly, boolean deep)
     NON-DOM: Subclassed to flip the attributes' readonly switch as well.
protected  voidsetupDefaultAttributes()
     Setup the default attributes.
protected  voidsynchronizeData()
     Synchronizes the data (name and value) for fast nodes.

Field Detail
attributes
protected AttributeMap attributes(Code)
Attributes.



name
protected String name(Code)
Element name.



serialVersionUID
final static long serialVersionUID(Code)
Serialization version.




Constructor Detail
ElementImpl
public ElementImpl(CoreDocumentImpl ownerDoc, String name)(Code)
Factory constructor.



ElementImpl
protected ElementImpl()(Code)




Method Detail
cloneNode
public Node cloneNode(boolean deep)(Code)
Return a duplicate copy of this Element. Note that its children will not be copied unless the "deep" flag is true, but Attributes are always replicated.
See Also:   org.w3c.dom.Node.cloneNode(boolean)



getAttribute
public String getAttribute(String name)(Code)
Look up a single Attribute by name. Returns the Attribute's string value, or an empty string (NOT null!) to indicate that the name did not map to a currently defined attribute.

Note: Attributes may contain complex node trees. This method returns the "flattened" string obtained from Attribute.getValue(). If you need the structure information, see getAttributeNode().




getAttributeNS
public String getAttributeNS(String namespaceURI, String localName)(Code)
Introduced in DOM Level 2.

Retrieves an attribute value by local name and namespace URI.
Parameters:
  namespaceURI - The namespace URI of the attribute toretrieve.
Parameters:
  localName - The local name of the attribute to retrieve. String The Attr value as a string, or empty stringif that attributedoes not have a specified or default value.
since:
   WD-DOM-Level-2-19990923




getAttributeNode
public Attr getAttributeNode(String name)(Code)
Look up a single Attribute by name. Returns the Attribute Node, so its complete child tree is available. This could be important in XML, where the string rendering may not be sufficient information.

If no matching attribute is available, returns null.




getAttributeNodeNS
public Attr getAttributeNodeNS(String namespaceURI, String localName)(Code)
Retrieves an Attr node by local name and namespace URI.
Parameters:
  namespaceURI - The namespace URI of the attribute toretrieve.
Parameters:
  localName - The local name of the attribute to retrieve. Attr The Attr node with the specified attribute local name and namespaceURI or null if there is no such attribute.
since:
   WD-DOM-Level-2-19990923



getAttributes
public NamedNodeMap getAttributes()(Code)
Retrieve all the Attributes as a set. Note that this API is inherited from Node rather than specified on Element; in fact only Elements will ever have Attributes, but they want to allow folks to "blindly" operate on the tree as a set of Nodes.



getDefaultAttributes
protected NamedNodeMapImpl getDefaultAttributes()(Code)
Get the default attributes.



getElementsByTagName
public NodeList getElementsByTagName(String tagname)(Code)
Returns a NodeList of all descendent nodes (children, grandchildren, and so on) which are Elements and which have the specified tag name.

Note: NodeList is a "live" view of the DOM. Its contents will change as the DOM changes, and alterations made to the NodeList will be reflected in the DOM.
Parameters:
  tagname - The type of element to gather. To obtain a list ofall elements no matter what their names, use the wild-card tagname "*".
See Also:   DeepNodeListImpl




getElementsByTagNameNS
public NodeList getElementsByTagNameNS(String namespaceURI, String localName)(Code)
Introduced in DOM Level 2.

Returns a NodeList of all the Elements with a given local name and namespace URI in the order in which they would be encountered in a preorder traversal of the Document tree, starting from this node.
Parameters:
  namespaceURI - The namespace URI of the elements to matchon. The special value "*" matches allnamespaces. When it is null or an emptystring, this method behaves likegetElementsByTagName.
Parameters:
  localName - The local name of the elements to match on.The special value "*" matches all local names. NodeList A new NodeList object containing all the matchedElements.
since:
   WD-DOM-Level-2-19990923




getNodeName
public String getNodeName()(Code)
Returns the element name



getNodeType
public short getNodeType()(Code)
A short integer indicating what type of node this is. The named constants for this value are defined in the org.w3c.dom.Node interface.



getTagName
public String getTagName()(Code)
Returns the name of the Element. Note that Element.nodeName() is defined to also return the tag name.

This is case-preserving in XML. HTML should uppercasify it on the way in.




hasAttribute
public boolean hasAttribute(String name)(Code)
Introduced in DOM Level 2.



hasAttributeNS
public boolean hasAttributeNS(String namespaceURI, String localName)(Code)
Introduced in DOM Level 2.



hasAttributes
public boolean hasAttributes()(Code)
Introduced in DOM Level 2.



normalize
public void normalize()(Code)
In "normal form" (as read from a source file), there will never be two Text children in succession. But DOM users may create successive Text nodes in the course of manipulating the document. Normalize walks the sub-tree and merges adjacent Texts, as if the DOM had been written out and read back in again. This simplifies implementation of higher-level functions that may want to assume that the document is in standard form.

To normalize a Document, normalize its top-level Element child.

As of PR-DOM-Level-1-19980818, CDATA -- despite being a subclass of Text -- is considered "markup" and will _not_ be merged either with normal Text or with other CDATASections.




reconcileDefaultAttributes
protected void reconcileDefaultAttributes()(Code)
Reconcile default attributes.



removeAttribute
public void removeAttribute(String name)(Code)
Remove the named attribute from this Element. If the removed Attribute has a default value, it is immediately replaced thereby.

The default logic is actually implemented in NamedNodeMapImpl. PR-DOM-Level-1-19980818 doesn't fully address the DTD, so some of this behavior is likely to change in future versions. ?????

Note that this call "succeeds" even if no attribute by this name existed -- unlike removeAttributeNode, which will throw a not-found exception in that case.
throws:
  DOMException - (NO_MODIFICATION_ALLOWED_ERR) if the node isreadonly.




removeAttributeNS
public void removeAttributeNS(String namespaceURI, String localName)(Code)
Introduced in DOM Level 2.

Removes an attribute by local name and namespace URI. If the removed attribute has a default value it is immediately replaced. The replacing attribute has the same namespace URI and local name, as well as the original prefix.


Parameters:
  namespaceURI - The namespace URI of the attribute to remove.
Parameters:
  localName - The local name of the attribute to remove.
throws:
  NO_MODIFICATION_ALLOWED_ERR - : Raised if thisnode is readonly.
since:
   WD-DOM-Level-2-19990923




removeAttributeNode
public Attr removeAttributeNode(Attr oldAttr) throws DOMException(Code)
Remove the specified attribute/value pair. If the removed Attribute has a default value, it is immediately replaced.

NOTE: Specifically removes THIS NODE -- not the node with this name, nor the node with these contents. If the specific Attribute object passed in is not stored in this Element, we throw a DOMException. If you really want to remove an attribute by name, use removeAttribute(). the Attribute object that was removed.
throws:
  DOMException - (NOT_FOUND_ERR) if oldattr is not an attribute ofthis Element.
throws:
  DOMException - (NO_MODIFICATION_ALLOWED_ERR) if the node isreadonly.




setAttribute
public void setAttribute(String name, String value)(Code)
Add a new name/value pair, or replace the value of the existing attribute having that name. Note: this method supports only the simplest kind of Attribute, one whose value is a string contained in a single Text node. If you want to assert a more complex value (which XML permits, though HTML doesn't), see setAttributeNode(). The attribute is created with specified=true, meaning it's an explicit value rather than inherited from the DTD as a default. Again, setAttributeNode can be used to achieve other results.
throws:
  DOMException - (INVALID_NAME_ERR) if the name is not acceptable.(Attribute factory will do that test for us.)
throws:
  DOMException - (NO_MODIFICATION_ALLOWED_ERR) if the node isreadonly.



setAttributeNS
public void setAttributeNS(String namespaceURI, String localName, String value)(Code)
Introduced in DOM Level 2.

Adds a new attribute. If the given namespaceURI is null or an empty string and the qualifiedName has a prefix that is "xml", the new attribute is bound to the predefined namespace "http://www.w3.org/XML/1998/namespace" [Namespaces]. If an attribute with the same local name and namespace URI is already present on the element, its prefix is changed to be the prefix part of the qualifiedName, and its value is changed to be the value parameter. This value is a simple string, it is not parsed as it is being set. So any markup (such as syntax to be recognized as an entity reference) is treated as literal text, and needs to be appropriately escaped by the implementation when it is written out. In order to assign an attribute value that contains entity references, the user must create an Attr node plus any Text and EntityReference nodes, build the appropriate subtree, and use setAttributeNodeNS or setAttributeNode to assign it as the value of an attribute.
Parameters:
  namespaceURI - The namespace URI of the attribute to createor alter.
Parameters:
  localName - The local name of the attribute to create oralter.
Parameters:
  value - The value to set in string form.
throws:
  INVALID_CHARACTER_ERR - : Raised if the specifiedname contains an invalid character.
throws:
  NO_MODIFICATION_ALLOWED_ERR - : Raised if thisnode is readonly.
throws:
  NAMESPACE_ERR - : Raised if the qualifiedNamehas a prefix that is "xml" and the namespaceURIis neither null nor an empty string nor"http://www.w3.org/XML/1998/namespace", or ifthe qualifiedName has a prefix that is "xmlns"but the namespaceURI is neither null nor anempty string, or if if the qualifiedName has aprefix different from "xml" and "xmlns" and thenamespaceURI is null or an empty string.
since:
   WD-DOM-Level-2-19990923




setAttributeNode
public Attr setAttributeNode(Attr newAttr) throws DOMException(Code)
Add a new attribute/value pair, or replace the value of the existing attribute with that name.

This method allows you to add an Attribute that has already been constructed, and hence avoids the limitations of the simple setAttribute() call. It can handle attribute values that have arbitrarily complex tree structure -- in particular, those which had entity references mixed into their text.
throws:
  DOMException - (INUSE_ATTRIBUTE_ERR) if the Attribute objecthas already been assigned to another Element.




setAttributeNodeNS
public Attr setAttributeNodeNS(Attr newAttr) throws DOMException(Code)
Introduced in DOM Level 2.

Adds a new attribute. If an attribute with that local name and namespace URI is already present in the element, it is replaced by the new one.
Parameters:
  Attr - The Attr node to add to the attribute list. When the Node has no namespaceURI, this method behaves like setAttributeNode. Attr If the newAttr attribute replaces an existing attributewith the same local name and namespace URI, the *previously existing Attr node is returned, otherwisenull is returned.
throws:
  WRONG_DOCUMENT_ERR - : Raised if newAttrwas created from a different document than the one thatcreated the element.
throws:
  NO_MODIFICATION_ALLOWED_ERR - : Raised ifthis node is readonly.
throws:
  INUSE_ATTRIBUTE_ERR - : Raised if newAttr isalready an attribute of another Element object. TheDOM user must explicitly clone Attr nodes to re-usethem in other elements.
since:
   WD-DOM-Level-2-19990923




setOwnerDocument
void setOwnerDocument(CoreDocumentImpl doc)(Code)
NON-DOM set the ownerDocument of this node, its children, and its attributes



setReadOnly
public void setReadOnly(boolean readOnly, boolean deep)(Code)
NON-DOM: Subclassed to flip the attributes' readonly switch as well.
See Also:   NodeImpl.setReadOnly



setupDefaultAttributes
protected void setupDefaultAttributes()(Code)
Setup the default attributes.



synchronizeData
protected void synchronizeData()(Code)
Synchronizes the data (name and value) for fast nodes.



Fields inherited from org.apache.xerces.dom.ParentNode
protected transient ChildNode fCachedChild(Code)(Java Doc)
protected transient int fCachedChildIndex(Code)(Java Doc)
protected transient int fCachedLength(Code)(Java Doc)
protected ChildNode firstChild(Code)(Java Doc)
protected CoreDocumentImpl ownerDocument(Code)(Java Doc)
final static long serialVersionUID(Code)(Java Doc)

Methods inherited from org.apache.xerces.dom.ParentNode
void checkNormalizationAfterInsert(ChildNode insertedChild)(Code)(Java Doc)
void checkNormalizationAfterRemove(ChildNode previousSibling)(Code)(Java Doc)
public Node cloneNode(boolean deep)(Code)(Java Doc)
public NodeList getChildNodes()(Code)(Java Doc)
final protected NodeList getChildNodesUnoptimized()(Code)(Java Doc)
public Node getFirstChild()(Code)(Java Doc)
public Node getLastChild()(Code)(Java Doc)
public int getLength()(Code)(Java Doc)
public Document getOwnerDocument()(Code)(Java Doc)
public boolean hasChildNodes()(Code)(Java Doc)
public Node insertBefore(Node newChild, Node refChild) throws DOMException(Code)(Java Doc)
Node internalInsertBefore(Node newChild, Node refChild, boolean replace) throws DOMException(Code)(Java Doc)
Node internalRemoveChild(Node oldChild, boolean replace) throws DOMException(Code)(Java Doc)
public Node item(int index)(Code)(Java Doc)
final ChildNode lastChild()(Code)(Java Doc)
final void lastChild(ChildNode node)(Code)(Java Doc)
public void normalize()(Code)(Java Doc)
CoreDocumentImpl ownerDocument()(Code)(Java Doc)
public Node removeChild(Node oldChild) throws DOMException(Code)(Java Doc)
public Node replaceChild(Node newChild, Node oldChild) throws DOMException(Code)(Java Doc)
void setOwnerDocument(CoreDocumentImpl doc)(Code)(Java Doc)
public void setReadOnly(boolean readOnly, boolean deep)(Code)(Java Doc)
protected void synchronizeChildren()(Code)(Java Doc)

Fields inherited from org.apache.xerces.dom.ChildNode
protected ChildNode nextSibling(Code)(Java Doc)
protected ChildNode previousSibling(Code)(Java Doc)
final static long serialVersionUID(Code)(Java Doc)

Methods inherited from org.apache.xerces.dom.ChildNode
public Node cloneNode(boolean deep)(Code)(Java Doc)
public Node getNextSibling()(Code)(Java Doc)
public Node getParentNode()(Code)(Java Doc)
public Node getPreviousSibling()(Code)(Java Doc)
final NodeImpl parentNode()(Code)(Java Doc)
final ChildNode previousSibling()(Code)(Java Doc)

Fields inherited from org.apache.xerces.dom.NodeImpl
final public static short ELEMENT_DEFINITION_NODE(Code)(Java Doc)
final protected static short FIRSTCHILD(Code)(Java Doc)
final protected static short HASSTRING(Code)(Java Doc)
final protected static short IGNORABLEWS(Code)(Java Doc)
final protected static short OWNED(Code)(Java Doc)
final protected static short READONLY(Code)(Java Doc)
final protected static short SPECIFIED(Code)(Java Doc)
final protected static short SYNCCHILDREN(Code)(Java Doc)
final protected static short SYNCDATA(Code)(Java Doc)
final protected static short UNNORMALIZED(Code)(Java Doc)
protected short flags(Code)(Java Doc)
protected NodeImpl ownerNode(Code)(Java Doc)
final static long serialVersionUID(Code)(Java Doc)

Methods inherited from org.apache.xerces.dom.NodeImpl
public void addEventListener(String type, EventListener listener, boolean useCapture)(Code)(Java Doc)
public Node appendChild(Node newChild) throws DOMException(Code)(Java Doc)
protected void changed()(Code)(Java Doc)
protected int changes()(Code)(Java Doc)
public Node cloneNode(boolean deep)(Code)(Java Doc)
public boolean dispatchEvent(Event event)(Code)(Java Doc)
public NamedNodeMap getAttributes()(Code)(Java Doc)
public NodeList getChildNodes()(Code)(Java Doc)
public Node getFirstChild()(Code)(Java Doc)
public Node getLastChild()(Code)(Java Doc)
public int getLength()(Code)(Java Doc)
public String getLocalName()(Code)(Java Doc)
public String getNamespaceURI()(Code)(Java Doc)
public Node getNextSibling()(Code)(Java Doc)
abstract public String getNodeName()(Code)(Java Doc)
abstract public short getNodeType()(Code)(Java Doc)
public String getNodeValue()(Code)(Java Doc)
public Document getOwnerDocument()(Code)(Java Doc)
public Node getParentNode()(Code)(Java Doc)
public String getPrefix()(Code)(Java Doc)
public Node getPreviousSibling()(Code)(Java Doc)
public boolean getReadOnly()(Code)(Java Doc)
public Object getUserData()(Code)(Java Doc)
public boolean hasAttributes()(Code)(Java Doc)
public boolean hasChildNodes()(Code)(Java Doc)
final boolean hasStringValue()(Code)(Java Doc)
final void hasStringValue(boolean value)(Code)(Java Doc)
public Node insertBefore(Node newChild, Node refChild) throws DOMException(Code)(Java Doc)
final boolean internalIsIgnorableWhitespace()(Code)(Java Doc)
final boolean isFirstChild()(Code)(Java Doc)
final void isFirstChild(boolean value)(Code)(Java Doc)
final void isIgnorableWhitespace(boolean value)(Code)(Java Doc)
final boolean isNormalized()(Code)(Java Doc)
final void isNormalized(boolean value)(Code)(Java Doc)
final boolean isOwned()(Code)(Java Doc)
final void isOwned(boolean value)(Code)(Java Doc)
final boolean isReadOnly()(Code)(Java Doc)
final void isReadOnly(boolean value)(Code)(Java Doc)
final boolean isSpecified()(Code)(Java Doc)
final void isSpecified(boolean value)(Code)(Java Doc)
public boolean isSupported(String feature, String version)(Code)(Java Doc)
public Node item(int index)(Code)(Java Doc)
final boolean needsSyncChildren()(Code)(Java Doc)
final void needsSyncChildren(boolean value)(Code)(Java Doc)
final boolean needsSyncData()(Code)(Java Doc)
final void needsSyncData(boolean value)(Code)(Java Doc)
public void normalize()(Code)(Java Doc)
CoreDocumentImpl ownerDocument()(Code)(Java Doc)
NodeImpl parentNode()(Code)(Java Doc)
ChildNode previousSibling()(Code)(Java Doc)
public Node removeChild(Node oldChild) throws DOMException(Code)(Java Doc)
public void removeEventListener(String type, EventListener listener, boolean useCapture)(Code)(Java Doc)
public Node replaceChild(Node newChild, Node oldChild) throws DOMException(Code)(Java Doc)
public void setNodeValue(String x) throws DOMException(Code)(Java Doc)
void setOwnerDocument(CoreDocumentImpl doc)(Code)(Java Doc)
public void setPrefix(String prefix) throws DOMException(Code)(Java Doc)
public void setReadOnly(boolean readOnly, boolean deep)(Code)(Java Doc)
public void setUserData(Object data)(Code)(Java Doc)
protected void synchronizeData()(Code)(Java Doc)
public String toString()(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.