The Comment Class
package org.jdom;
public class Comment implements Serializable, Cloneable {
protected String text;
protected Comment() {}
public Comment(String text) {}
public String getText() {}
public void setText(String text) {}
public Comment detach() {}
public Document getDocument() {}
protected Comment setDocument(Document document) {}
public Element getParent() {}
protected Comment setParent(Element parent){}
public final String toString() {}
public final boolean equals(Object ob) {}
public final int hashCode() {}
public final Object clone() {}
}