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