ChartEquationElement.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.chart;

  29. import org.odftoolkit.odfdom.dom.DefaultElementVisitor;
  30. import org.odftoolkit.odfdom.dom.OdfDocumentNamespace;
  31. import org.odftoolkit.odfdom.dom.attribute.chart.ChartAutomaticContentAttribute;
  32. import org.odftoolkit.odfdom.dom.attribute.chart.ChartDisplayEquationAttribute;
  33. import org.odftoolkit.odfdom.dom.attribute.chart.ChartDisplayRSquareAttribute;
  34. import org.odftoolkit.odfdom.dom.attribute.chart.ChartStyleNameAttribute;
  35. import org.odftoolkit.odfdom.dom.attribute.svg.SvgXAttribute;
  36. import org.odftoolkit.odfdom.dom.attribute.svg.SvgYAttribute;
  37. import org.odftoolkit.odfdom.dom.element.text.TextPElement;
  38. import org.odftoolkit.odfdom.pkg.ElementVisitor;
  39. import org.odftoolkit.odfdom.pkg.OdfElement;
  40. import org.odftoolkit.odfdom.pkg.OdfFileDom;
  41. import org.odftoolkit.odfdom.pkg.OdfName;

  42. /** DOM implementation of OpenDocument element {@odf.element chart:equation}. */
  43. public class ChartEquationElement extends OdfElement {

  44.   public static final OdfName ELEMENT_NAME =
  45.       OdfName.newName(OdfDocumentNamespace.CHART, "equation");

  46.   /**
  47.    * Create the instance of <code>ChartEquationElement</code>
  48.    *
  49.    * @param ownerDoc The type is <code>OdfFileDom</code>
  50.    */
  51.   public ChartEquationElement(OdfFileDom ownerDoc) {
  52.     super(ownerDoc, ELEMENT_NAME);
  53.   }

  54.   /**
  55.    * Get the element name
  56.    *
  57.    * @return return <code>OdfName</code> the name of element {@odf.element chart:equation}.
  58.    */
  59.   public OdfName getOdfName() {
  60.     return ELEMENT_NAME;
  61.   }

  62.   /**
  63.    * Receives the value of the ODFDOM attribute representation <code>ChartAutomaticContentAttribute
  64.    * </code> , See {@odf.attribute chart:automatic-content}
  65.    *
  66.    * @return - the <code>Boolean</code> , the value or <code>null</code>, if the attribute is not
  67.    *     set and no default value defined.
  68.    */
  69.   public Boolean getChartAutomaticContentAttribute() {
  70.     ChartAutomaticContentAttribute attr =
  71.         (ChartAutomaticContentAttribute)
  72.             getOdfAttribute(OdfDocumentNamespace.CHART, "automatic-content");
  73.     if (attr != null) {
  74.       return Boolean.valueOf(attr.booleanValue());
  75.     }
  76.     return Boolean.valueOf(ChartAutomaticContentAttribute.DEFAULT_VALUE);
  77.   }

  78.   /**
  79.    * Sets the value of ODFDOM attribute representation <code>ChartAutomaticContentAttribute</code> ,
  80.    * See {@odf.attribute chart:automatic-content}
  81.    *
  82.    * @param chartAutomaticContentValue The type is <code>Boolean</code>
  83.    */
  84.   public void setChartAutomaticContentAttribute(Boolean chartAutomaticContentValue) {
  85.     ChartAutomaticContentAttribute attr =
  86.         new ChartAutomaticContentAttribute((OdfFileDom) this.ownerDocument);
  87.     setOdfAttribute(attr);
  88.     attr.setBooleanValue(chartAutomaticContentValue.booleanValue());
  89.   }

  90.   /**
  91.    * Receives the value of the ODFDOM attribute representation <code>ChartDisplayEquationAttribute
  92.    * </code> , See {@odf.attribute chart:display-equation}
  93.    *
  94.    * @return - the <code>Boolean</code> , the value or <code>null</code>, if the attribute is not
  95.    *     set and no default value defined.
  96.    */
  97.   public Boolean getChartDisplayEquationAttribute() {
  98.     ChartDisplayEquationAttribute attr =
  99.         (ChartDisplayEquationAttribute)
  100.             getOdfAttribute(OdfDocumentNamespace.CHART, "display-equation");
  101.     if (attr != null) {
  102.       return Boolean.valueOf(attr.booleanValue());
  103.     }
  104.     return Boolean.valueOf(ChartDisplayEquationAttribute.DEFAULT_VALUE);
  105.   }

  106.   /**
  107.    * Sets the value of ODFDOM attribute representation <code>ChartDisplayEquationAttribute</code> ,
  108.    * See {@odf.attribute chart:display-equation}
  109.    *
  110.    * @param chartDisplayEquationValue The type is <code>Boolean</code>
  111.    */
  112.   public void setChartDisplayEquationAttribute(Boolean chartDisplayEquationValue) {
  113.     ChartDisplayEquationAttribute attr =
  114.         new ChartDisplayEquationAttribute((OdfFileDom) this.ownerDocument);
  115.     setOdfAttribute(attr);
  116.     attr.setBooleanValue(chartDisplayEquationValue.booleanValue());
  117.   }

  118.   /**
  119.    * Receives the value of the ODFDOM attribute representation <code>ChartDisplayRSquareAttribute
  120.    * </code> , See {@odf.attribute chart:display-r-square}
  121.    *
  122.    * @return - the <code>Boolean</code> , the value or <code>null</code>, if the attribute is not
  123.    *     set and no default value defined.
  124.    */
  125.   public Boolean getChartDisplayRSquareAttribute() {
  126.     ChartDisplayRSquareAttribute attr =
  127.         (ChartDisplayRSquareAttribute)
  128.             getOdfAttribute(OdfDocumentNamespace.CHART, "display-r-square");
  129.     if (attr != null) {
  130.       return Boolean.valueOf(attr.booleanValue());
  131.     }
  132.     return Boolean.valueOf(ChartDisplayRSquareAttribute.DEFAULT_VALUE);
  133.   }

  134.   /**
  135.    * Sets the value of ODFDOM attribute representation <code>ChartDisplayRSquareAttribute</code> ,
  136.    * See {@odf.attribute chart:display-r-square}
  137.    *
  138.    * @param chartDisplayRSquareValue The type is <code>Boolean</code>
  139.    */
  140.   public void setChartDisplayRSquareAttribute(Boolean chartDisplayRSquareValue) {
  141.     ChartDisplayRSquareAttribute attr =
  142.         new ChartDisplayRSquareAttribute((OdfFileDom) this.ownerDocument);
  143.     setOdfAttribute(attr);
  144.     attr.setBooleanValue(chartDisplayRSquareValue.booleanValue());
  145.   }

  146.   /**
  147.    * Receives the value of the ODFDOM attribute representation <code>ChartStyleNameAttribute</code>
  148.    * , See {@odf.attribute chart:style-name}
  149.    *
  150.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  151.    *     and no default value defined.
  152.    */
  153.   public String getChartStyleNameAttribute() {
  154.     ChartStyleNameAttribute attr =
  155.         (ChartStyleNameAttribute) getOdfAttribute(OdfDocumentNamespace.CHART, "style-name");
  156.     if (attr != null) {
  157.       return String.valueOf(attr.getValue());
  158.     }
  159.     return null;
  160.   }

  161.   /**
  162.    * Sets the value of ODFDOM attribute representation <code>ChartStyleNameAttribute</code> , See
  163.    * {@odf.attribute chart:style-name}
  164.    *
  165.    * @param chartStyleNameValue The type is <code>String</code>
  166.    */
  167.   public void setChartStyleNameAttribute(String chartStyleNameValue) {
  168.     ChartStyleNameAttribute attr = new ChartStyleNameAttribute((OdfFileDom) this.ownerDocument);
  169.     setOdfAttribute(attr);
  170.     attr.setValue(chartStyleNameValue);
  171.   }

  172.   /**
  173.    * Receives the value of the ODFDOM attribute representation <code>SvgXAttribute</code> , See
  174.    * {@odf.attribute svg:x}
  175.    *
  176.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  177.    *     and no default value defined.
  178.    */
  179.   public String getSvgXAttribute() {
  180.     SvgXAttribute attr = (SvgXAttribute) getOdfAttribute(OdfDocumentNamespace.SVG, "x");
  181.     if (attr != null) {
  182.       return String.valueOf(attr.getValue());
  183.     }
  184.     return null;
  185.   }

  186.   /**
  187.    * Sets the value of ODFDOM attribute representation <code>SvgXAttribute</code> , See
  188.    * {@odf.attribute svg:x}
  189.    *
  190.    * @param svgXValue The type is <code>String</code>
  191.    */
  192.   public void setSvgXAttribute(String svgXValue) {
  193.     SvgXAttribute attr = new SvgXAttribute((OdfFileDom) this.ownerDocument);
  194.     setOdfAttribute(attr);
  195.     attr.setValue(svgXValue);
  196.   }

  197.   /**
  198.    * Receives the value of the ODFDOM attribute representation <code>SvgYAttribute</code> , See
  199.    * {@odf.attribute svg:y}
  200.    *
  201.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  202.    *     and no default value defined.
  203.    */
  204.   public String getSvgYAttribute() {
  205.     SvgYAttribute attr = (SvgYAttribute) getOdfAttribute(OdfDocumentNamespace.SVG, "y");
  206.     if (attr != null) {
  207.       return String.valueOf(attr.getValue());
  208.     }
  209.     return null;
  210.   }

  211.   /**
  212.    * Sets the value of ODFDOM attribute representation <code>SvgYAttribute</code> , See
  213.    * {@odf.attribute svg:y}
  214.    *
  215.    * @param svgYValue The type is <code>String</code>
  216.    */
  217.   public void setSvgYAttribute(String svgYValue) {
  218.     SvgYAttribute attr = new SvgYAttribute((OdfFileDom) this.ownerDocument);
  219.     setOdfAttribute(attr);
  220.     attr.setValue(svgYValue);
  221.   }

  222.   /**
  223.    * Create child element {@odf.element text:p}.
  224.    *
  225.    * <p>Child element is new in Odf 1.2
  226.    *
  227.    * @return the element {@odf.element text:p}
  228.    */
  229.   public TextPElement newTextPElement() {
  230.     TextPElement textP = ((OdfFileDom) this.ownerDocument).newOdfElement(TextPElement.class);
  231.     this.appendChild(textP);
  232.     return textP;
  233.   }

  234.   @Override
  235.   public void accept(ElementVisitor visitor) {
  236.     if (visitor instanceof DefaultElementVisitor) {
  237.       DefaultElementVisitor defaultVisitor = (DefaultElementVisitor) visitor;
  238.       defaultVisitor.visit(this);
  239.     } else {
  240.       visitor.visit(this);
  241.     }
  242.   }
  243. }