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() {}

}

Previous | Next | Top | Cafe con Leche

Copyright 2000, 2001 Elliotte Rusty Harold
elharo@metalab.unc.edu
Last Modified June 22, 2001