TextTableOfContentElement.java

  1. /**
  2.  * **********************************************************************
  3.  *
  4.  * <p>DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER
  5.  *
  6.  * <p>Copyright 2008, 2010 Oracle and/or its affiliates. All rights reserved.
  7.  *
  8.  * <p>Use is subject to license terms.
  9.  *
  10.  * <p>Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
  11.  * except in compliance with the License. You may obtain a copy of the License at
  12.  * http://www.apache.org/licenses/LICENSE-2.0. You can also obtain a copy of the License at
  13.  * http://odftoolkit.org/docs/license.txt
  14.  *
  15.  * <p>Unless required by applicable law or agreed to in writing, software distributed under the
  16.  * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
  17.  * express or implied.
  18.  *
  19.  * <p>See the License for the specific language governing permissions and limitations under the
  20.  * License.
  21.  *
  22.  * <p>**********************************************************************
  23.  */

  24. /*
  25.  * This file is automatically generated.
  26.  * Don't edit manually.
  27.  */
  28. package org.odftoolkit.odfdom.dom.element.text;

  29. import org.odftoolkit.odfdom.dom.DefaultElementVisitor;
  30. import org.odftoolkit.odfdom.dom.OdfDocumentNamespace;
  31. import org.odftoolkit.odfdom.dom.attribute.text.TextNameAttribute;
  32. import org.odftoolkit.odfdom.dom.attribute.text.TextProtectedAttribute;
  33. import org.odftoolkit.odfdom.dom.attribute.text.TextProtectionKeyAttribute;
  34. import org.odftoolkit.odfdom.dom.attribute.text.TextProtectionKeyDigestAlgorithmAttribute;
  35. import org.odftoolkit.odfdom.dom.attribute.text.TextStyleNameAttribute;
  36. import org.odftoolkit.odfdom.dom.attribute.xml.XmlIdAttribute;
  37. import org.odftoolkit.odfdom.dom.element.OdfStylableElement;
  38. import org.odftoolkit.odfdom.dom.style.OdfStyleFamily;
  39. import org.odftoolkit.odfdom.pkg.ElementVisitor;
  40. import org.odftoolkit.odfdom.pkg.OdfFileDom;
  41. import org.odftoolkit.odfdom.pkg.OdfName;

  42. /** DOM implementation of OpenDocument element {@odf.element text:table-of-content}. */
  43. public class TextTableOfContentElement extends OdfStylableElement {

  44.   public static final OdfName ELEMENT_NAME =
  45.       OdfName.newName(OdfDocumentNamespace.TEXT, "table-of-content");

  46.   /**
  47.    * Create the instance of <code>TextTableOfContentElement</code>
  48.    *
  49.    * @param ownerDoc The type is <code>OdfFileDom</code>
  50.    */
  51.   public TextTableOfContentElement(OdfFileDom ownerDoc) {
  52.     super(
  53.         ownerDoc,
  54.         ELEMENT_NAME,
  55.         OdfStyleFamily.Section,
  56.         OdfName.newName(OdfDocumentNamespace.TEXT, "style-name"));
  57.   }

  58.   /**
  59.    * Get the element name
  60.    *
  61.    * @return return <code>OdfName</code> the name of element {@odf.element text:table-of-content}.
  62.    */
  63.   public OdfName getOdfName() {
  64.     return ELEMENT_NAME;
  65.   }

  66.   /**
  67.    * Receives the value of the ODFDOM attribute representation <code>TextNameAttribute</code> , See
  68.    * {@odf.attribute text:name}
  69.    *
  70.    * <p>Attribute is mandatory.
  71.    *
  72.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  73.    *     and no default value defined.
  74.    */
  75.   public String getTextNameAttribute() {
  76.     TextNameAttribute attr = (TextNameAttribute) getOdfAttribute(OdfDocumentNamespace.TEXT, "name");
  77.     if (attr != null) {
  78.       return String.valueOf(attr.getValue());
  79.     }
  80.     return null;
  81.   }

  82.   /**
  83.    * Sets the value of ODFDOM attribute representation <code>TextNameAttribute</code> , See
  84.    * {@odf.attribute text:name}
  85.    *
  86.    * @param textNameValue The type is <code>String</code>
  87.    */
  88.   public void setTextNameAttribute(String textNameValue) {
  89.     TextNameAttribute attr = new TextNameAttribute((OdfFileDom) this.ownerDocument);
  90.     setOdfAttribute(attr);
  91.     attr.setValue(textNameValue);
  92.   }

  93.   /**
  94.    * Receives the value of the ODFDOM attribute representation <code>TextProtectedAttribute</code> ,
  95.    * See {@odf.attribute text:protected}
  96.    *
  97.    * @return - the <code>Boolean</code> , the value or <code>null</code>, if the attribute is not
  98.    *     set and no default value defined.
  99.    */
  100.   public Boolean getTextProtectedAttribute() {
  101.     TextProtectedAttribute attr =
  102.         (TextProtectedAttribute) getOdfAttribute(OdfDocumentNamespace.TEXT, "protected");
  103.     if (attr != null) {
  104.       return Boolean.valueOf(attr.booleanValue());
  105.     }
  106.     return null;
  107.   }

  108.   /**
  109.    * Sets the value of ODFDOM attribute representation <code>TextProtectedAttribute</code> , See
  110.    * {@odf.attribute text:protected}
  111.    *
  112.    * @param textProtectedValue The type is <code>Boolean</code>
  113.    */
  114.   public void setTextProtectedAttribute(Boolean textProtectedValue) {
  115.     TextProtectedAttribute attr = new TextProtectedAttribute((OdfFileDom) this.ownerDocument);
  116.     setOdfAttribute(attr);
  117.     attr.setBooleanValue(textProtectedValue.booleanValue());
  118.   }

  119.   /**
  120.    * Receives the value of the ODFDOM attribute representation <code>TextProtectionKeyAttribute
  121.    * </code> , See {@odf.attribute text:protection-key}
  122.    *
  123.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  124.    *     and no default value defined.
  125.    */
  126.   public String getTextProtectionKeyAttribute() {
  127.     TextProtectionKeyAttribute attr =
  128.         (TextProtectionKeyAttribute) getOdfAttribute(OdfDocumentNamespace.TEXT, "protection-key");
  129.     if (attr != null) {
  130.       return String.valueOf(attr.getValue());
  131.     }
  132.     return null;
  133.   }

  134.   /**
  135.    * Sets the value of ODFDOM attribute representation <code>TextProtectionKeyAttribute</code> , See
  136.    * {@odf.attribute text:protection-key}
  137.    *
  138.    * @param textProtectionKeyValue The type is <code>String</code>
  139.    */
  140.   public void setTextProtectionKeyAttribute(String textProtectionKeyValue) {
  141.     TextProtectionKeyAttribute attr =
  142.         new TextProtectionKeyAttribute((OdfFileDom) this.ownerDocument);
  143.     setOdfAttribute(attr);
  144.     attr.setValue(textProtectionKeyValue);
  145.   }

  146.   /**
  147.    * Receives the value of the ODFDOM attribute representation <code>
  148.    * TextProtectionKeyDigestAlgorithmAttribute</code> , See {@odf.attribute
  149.    * text:protection-key-digest-algorithm}
  150.    *
  151.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  152.    *     and no default value defined.
  153.    */
  154.   public String getTextProtectionKeyDigestAlgorithmAttribute() {
  155.     TextProtectionKeyDigestAlgorithmAttribute attr =
  156.         (TextProtectionKeyDigestAlgorithmAttribute)
  157.             getOdfAttribute(OdfDocumentNamespace.TEXT, "protection-key-digest-algorithm");
  158.     if (attr != null) {
  159.       return String.valueOf(attr.getValue());
  160.     }
  161.     return TextProtectionKeyDigestAlgorithmAttribute.DEFAULT_VALUE;
  162.   }

  163.   /**
  164.    * Sets the value of ODFDOM attribute representation <code>
  165.    * TextProtectionKeyDigestAlgorithmAttribute</code> , See {@odf.attribute
  166.    * text:protection-key-digest-algorithm}
  167.    *
  168.    * @param textProtectionKeyDigestAlgorithmValue The type is <code>String</code>
  169.    */
  170.   public void setTextProtectionKeyDigestAlgorithmAttribute(
  171.       String textProtectionKeyDigestAlgorithmValue) {
  172.     TextProtectionKeyDigestAlgorithmAttribute attr =
  173.         new TextProtectionKeyDigestAlgorithmAttribute((OdfFileDom) this.ownerDocument);
  174.     setOdfAttribute(attr);
  175.     attr.setValue(textProtectionKeyDigestAlgorithmValue);
  176.   }

  177.   /**
  178.    * Receives the value of the ODFDOM attribute representation <code>TextStyleNameAttribute</code> ,
  179.    * See {@odf.attribute text:style-name}
  180.    *
  181.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  182.    *     and no default value defined.
  183.    */
  184.   public String getTextStyleNameAttribute() {
  185.     TextStyleNameAttribute attr =
  186.         (TextStyleNameAttribute) getOdfAttribute(OdfDocumentNamespace.TEXT, "style-name");
  187.     if (attr != null) {
  188.       return String.valueOf(attr.getValue());
  189.     }
  190.     return null;
  191.   }

  192.   /**
  193.    * Sets the value of ODFDOM attribute representation <code>TextStyleNameAttribute</code> , See
  194.    * {@odf.attribute text:style-name}
  195.    *
  196.    * @param textStyleNameValue The type is <code>String</code>
  197.    */
  198.   public void setTextStyleNameAttribute(String textStyleNameValue) {
  199.     TextStyleNameAttribute attr = new TextStyleNameAttribute((OdfFileDom) this.ownerDocument);
  200.     setOdfAttribute(attr);
  201.     attr.setValue(textStyleNameValue);
  202.   }

  203.   /**
  204.    * Receives the value of the ODFDOM attribute representation <code>XmlIdAttribute</code> , See
  205.    * {@odf.attribute xml:id}
  206.    *
  207.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  208.    *     and no default value defined.
  209.    */
  210.   public String getXmlIdAttribute() {
  211.     XmlIdAttribute attr = (XmlIdAttribute) getOdfAttribute(OdfDocumentNamespace.XML, "id");
  212.     if (attr != null) {
  213.       return String.valueOf(attr.getValue());
  214.     }
  215.     return null;
  216.   }

  217.   /**
  218.    * Sets the value of ODFDOM attribute representation <code>XmlIdAttribute</code> , See
  219.    * {@odf.attribute xml:id}
  220.    *
  221.    * @param xmlIdValue The type is <code>String</code>
  222.    */
  223.   public void setXmlIdAttribute(String xmlIdValue) {
  224.     XmlIdAttribute attr = new XmlIdAttribute((OdfFileDom) this.ownerDocument);
  225.     setOdfAttribute(attr);
  226.     attr.setValue(xmlIdValue);
  227.   }

  228.   /**
  229.    * Create child element {@odf.element text:index-body}.
  230.    *
  231.    * <p>Child element is mandatory.
  232.    *
  233.    * @return the element {@odf.element text:index-body}
  234.    */
  235.   public TextIndexBodyElement newTextIndexBodyElement() {
  236.     TextIndexBodyElement textIndexBody =
  237.         ((OdfFileDom) this.ownerDocument).newOdfElement(TextIndexBodyElement.class);
  238.     this.appendChild(textIndexBody);
  239.     return textIndexBody;
  240.   }

  241.   /**
  242.    * Create child element {@odf.element text:table-of-content-source}.
  243.    *
  244.    * <p>Child element is mandatory.
  245.    *
  246.    * @return the element {@odf.element text:table-of-content-source}
  247.    */
  248.   public TextTableOfContentSourceElement newTextTableOfContentSourceElement() {
  249.     TextTableOfContentSourceElement textTableOfContentSource =
  250.         ((OdfFileDom) this.ownerDocument).newOdfElement(TextTableOfContentSourceElement.class);
  251.     this.appendChild(textTableOfContentSource);
  252.     return textTableOfContentSource;
  253.   }

  254.   @Override
  255.   public void accept(ElementVisitor visitor) {
  256.     if (visitor instanceof DefaultElementVisitor) {
  257.       DefaultElementVisitor defaultVisitor = (DefaultElementVisitor) visitor;
  258.       defaultVisitor.visit(this);
  259.     } else {
  260.       visitor.visit(this);
  261.     }
  262.   }
  263. }