package org.jdom.input.lax; import org.jdom.CDATA; /** * @author rlear * * Date Apr 9, 2003 */ public class LaxCDATA extends CDATA { /** * Constructor for LaxCDATA. * @param str */ public LaxCDATA(String str) { // Maybe make EMPTY_STRING protected on CDATA? this.value = (str == null ? "" : str); } }