package org.jdom.input.lax; import org.jdom.Comment; /** * @author rlear * * Date Apr 9, 2003 */ public class LaxComment extends Comment { /** * Constructor for LaxComment. * @param text */ public LaxComment(String text) { this.text = text; } }