613614615616617618619
/** * <b>DOM</b>: Implements {@link * org.w3c.dom.Document#createCDATASection(String)} */ public CDATASection createCDATASection(String data) throws DOMException { return new GenericCDATASection(data, this); }
289290291292293294295
240241242243244245246
/** * <b>DOM</b>: Implements {@link Document#createCDATASection(String)} */ public CDATASection createCDATASection(String data) throws DOMException { return new GenericCDATASection(data, this); }
313314315316317318319