1.

Name Some Of The Important Dom4j Classes?

Answer»

The DOM4J defines several Java classes.

Here are the most COMMON classes:

  • Document - Represents the ENTIRE XML document. A Document object is often REFERRED to as a DOM tree.
  • Element - Represents an XML element. Element object has methods to manipulate its CHILD elements,its text, attributes and namespaces.
  • Attribute Represents an attribute of an element. Attribute has method to get and set the VALUE of attribute. It has parent and attribute type.
  • Node Represents Element, Attribute or ProcessingInstruction

The DOM4J defines several Java classes.

Here are the most common classes:



Discussion

No Comment Found