8.2 Text Namespaces

<..bind text namespace prefixes in the root elementNO..>
 ((Element) node).setAttribute(
       "xmlns:office",
       "urn:oasis:names:tc:opendocument:xmlns:office:1.0"
 );
 ((Element) node).setAttribute(
       "xmlns:style",
       "urn:oasis:names:tc:opendocument:xmlns:style:1.0"
 );
 ((Element) node).setAttribute(
       "xmlns:text",
       "urn:oasis:names:tc:opendocument:xmlns:text:1.0"
 );
 ((Element) node).setAttribute(
       "xmlns:table",
       "urn:oasis:names:tc:opendocument:xmlns:table:1.0"
 );
 ((Element) node).setAttribute(
       "xmlns:draw",
       "urn:oasis:names:tc:opendocument:xmlns:drawing:1.0"
 );
 ((Element) node).setAttribute(
       "xmlns:fo",
       "http://www.w3.org/1999/XSL/Format"
 );
 ((Element) node).setAttribute(
       "xmlns:xlink",
       "http://www.w3.org/1999/xlink"
 );
 ((Element) node).setAttribute(
       "xmlns:dc",
       "http://purl.org/dc/elements/1.1/"
 );
 ((Element) node).setAttribute(
       "xmlns:meta",
       "urn:oasis:names:tc:opendocument:xmlns:meta:1.0"
 );
 ((Element) node).setAttribute(
       "xmlns:number",
       "urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0"
 );
 ((Element) node).setAttribute(
       "xmlns:svg",
       "http://www.w3.org/2000/svg"
 );
 ((Element) node).setAttribute(
       "xmlns:chart",
       "urn:oasis:names:tc:opendocument:xmlns:chart:1.0"
 );
 ((Element) node).setAttribute(
       "xmlns:dr3d",
       "urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0"
 );
 ((Element) node).setAttribute(
       "xmlns:math",
       "http://www.w3.org/1998/Math/MathML"
 );
 ((Element) node).setAttribute(
       "xmlns:form",
       "urn:oasis:names:tc:opendocument:xmlns:form:1.0"
 );
 ((Element) node).setAttribute(
       "xmlns:script",
       "urn:oasis:names:tc:opendocument:xmlns:script:1.0"
 );
 ((Element) node).setAttribute(
       "xmlns:ooo",
       "http://openoffice.org/2004/office"
 );
 ((Element) node).setAttribute(
       "xmlns:ooow",
       "http://openoffice.org/2004/writer"
 );
 ((Element) node).setAttribute(
       "xmlns:oooc",
       "http://openoffice.org/2004/calc"
 );
 ((Element) node).setAttribute(
       "xmlns:dom",
       "http://www.w3.org/2001/xml-events"
 );
 ((Element) node).setAttribute(
       "xmlns:xforms",
       "http://www.w3.org/2002/xforms"
 );
 ((Element) node).setAttribute(
       "xmlns:xsd",
       "http://www.w3.org/2001/XMLSchema"
 );
 ((Element) node).setAttribute(
       "xmlns:xsi",
       "http://www.w3.org/2001/XMLSchema-instance"
 );
-_-_-