package org.jdom.input.lax; import org.jdom.Text; /** * @author rlear * * Date Apr 9, 2003 */ public class LaxText extends Text { /** * Constructor for LaxText. * @param str */ public LaxText(String str) { value = (str == null ? "" : str); } }