1. /*
  2. * Copyright (c) 2000 World Wide Web Consortium,
  3. * (Massachusetts Institute of Technology, Institut National de
  4. * Recherche en Informatique et en Automatique, Keio University). All
  5. * Rights Reserved. This program is distributed under the W3C's Software
  6. * Intellectual Property License. This program is distributed in the
  7. * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
  8. * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  9. * PURPOSE.
  10. * See W3C License http://www.w3.org/Consortium/Legal/ for more details.
  11. */
  12. package org.w3c.dom;
  13. /**
  14. * CDATA sections are used to escape blocks of text containing characters that
  15. * would otherwise be regarded as markup. The only delimiter that is
  16. * recognized in a CDATA section is the "]]>" string that ends the CDATA
  17. * section. CDATA sections cannot be nested. Their primary purpose is for
  18. * including material such as XML fragments, without needing to escape all
  19. * the delimiters.
  20. * <p>The <code>DOMString</code> attribute of the <code>Text</code> node holds
  21. * the text that is contained by the CDATA section. Note that this may
  22. * contain characters that need to be escaped outside of CDATA sections and
  23. * that, depending on the character encoding ("charset") chosen for
  24. * serialization, it may be impossible to write out some characters as part
  25. * of a CDATA section.
  26. * <p>The <code>CDATASection</code> interface inherits from the
  27. * <code>CharacterData</code> interface through the <code>Text</code>
  28. * interface. Adjacent <code>CDATASection</code> nodes are not merged by use
  29. * of the <code>normalize</code> method of the <code>Node</code> interface.
  30. * Because no markup is recognized within a <code>CDATASection</code>,
  31. * character numeric references cannot be used as an escape mechanism when
  32. * serializing. Therefore, action needs to be taken when serializing a
  33. * <code>CDATASection</code> with a character encoding where some of the
  34. * contained characters cannot be represented. Failure to do so would not
  35. * produce well-formed XML.One potential solution in the serialization
  36. * process is to end the CDATA section before the character, output the
  37. * character using a character reference or entity reference, and open a new
  38. * CDATA section for any further characters in the text node. Note, however,
  39. * that some code conversion libraries at the time of writing do not return
  40. * an error or exception when a character is missing from the encoding,
  41. * making the task of ensuring that data is not corrupted on serialization
  42. * more difficult.
  43. * <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113'>Document Object Model (DOM) Level 2 Core Specification</a>.
  44. */
  45. public interface CDATASection extends Text {
  46. }