package org.jdom.input.lax; import org.jdom.EntityRef; /** * @author rlear * * Date Apr 9, 2003 */ public class LaxEntityRef extends EntityRef { /** * Constructor for LaxEntityRef. * @param name * @param publicID * @param systemID */ public LaxEntityRef(String name, String publicID, String systemID) { this.name = name; this.publicID = publicID; this.systemID = systemID; } }