The EntityRef Class
package org.jdom;
public class EntityRef implements Serializable, Cloneable {
    protected String name;
    protected String publicID;
    protected String systemID;
    protected Element parent;
    protected Document document;
    protected EntityRef() {}
    public EntityRef(String name) {}
    public EntityRef(String name, String publicID, String systemID) {}
    
    public EntityRef detach() {}
    
    public Document  getDocument() {}
    public String    getName() {}
    public Element   getParent() {}
    public String    getPublicID()  {}
    public String    getSystemID() {}
    protected EntityRef setParent(Element parent) {}
    public    EntityRef setName(String newPublicID) {}
    public    EntityRef setPublicID(String newPublicID) {}
    public    EntityRef setSystemID(String newSystemID) {}
    public Object clone() {}
    public final boolean equals(Object o) {}
    public final int hashCode() {}
    public String toString() {}
    
}