1.

Name Some Of The Important Jdom Classes?

Answer»

The JDOM 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.
  • Text Represents the text of XML tag.
  • Comment Represents the comments in a XML document.

The JDOM defines several Java classes. Here are the most common classes :



Discussion

No Comment Found