TableFilterSetItemElement.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.table;

  29. import org.odftoolkit.odfdom.dom.DefaultElementVisitor;
  30. import org.odftoolkit.odfdom.dom.OdfDocumentNamespace;
  31. import org.odftoolkit.odfdom.dom.attribute.table.TableValueAttribute;
  32. import org.odftoolkit.odfdom.pkg.ElementVisitor;
  33. import org.odftoolkit.odfdom.pkg.OdfElement;
  34. import org.odftoolkit.odfdom.pkg.OdfFileDom;
  35. import org.odftoolkit.odfdom.pkg.OdfName;

  36. /** DOM implementation of OpenDocument element {@odf.element table:filter-set-item}. */
  37. public class TableFilterSetItemElement extends OdfElement {

  38.   public static final OdfName ELEMENT_NAME =
  39.       OdfName.newName(OdfDocumentNamespace.TABLE, "filter-set-item");

  40.   /**
  41.    * Create the instance of <code>TableFilterSetItemElement</code>
  42.    *
  43.    * @param ownerDoc The type is <code>OdfFileDom</code>
  44.    */
  45.   public TableFilterSetItemElement(OdfFileDom ownerDoc) {
  46.     super(ownerDoc, ELEMENT_NAME);
  47.   }

  48.   /**
  49.    * Get the element name
  50.    *
  51.    * @return return <code>OdfName</code> the name of element {@odf.element table:filter-set-item}.
  52.    */
  53.   public OdfName getOdfName() {
  54.     return ELEMENT_NAME;
  55.   }

  56.   /**
  57.    * Receives the value of the ODFDOM attribute representation <code>TableValueAttribute</code> ,
  58.    * See {@odf.attribute table:value}
  59.    *
  60.    * <p>Attribute is mandatory.
  61.    *
  62.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  63.    *     and no default value defined.
  64.    */
  65.   public String getTableValueAttribute() {
  66.     TableValueAttribute attr =
  67.         (TableValueAttribute) getOdfAttribute(OdfDocumentNamespace.TABLE, "value");
  68.     if (attr != null) {
  69.       return String.valueOf(attr.getValue());
  70.     }
  71.     return null;
  72.   }

  73.   /**
  74.    * Sets the value of ODFDOM attribute representation <code>TableValueAttribute</code> , See
  75.    * {@odf.attribute table:value}
  76.    *
  77.    * @param tableValueValue The type is <code>String</code>
  78.    */
  79.   public void setTableValueAttribute(String tableValueValue) {
  80.     TableValueAttribute attr = new TableValueAttribute((OdfFileDom) this.ownerDocument);
  81.     setOdfAttribute(attr);
  82.     attr.setValue(tableValueValue);
  83.   }

  84.   @Override
  85.   public void accept(ElementVisitor visitor) {
  86.     if (visitor instanceof DefaultElementVisitor) {
  87.       DefaultElementVisitor defaultVisitor = (DefaultElementVisitor) visitor;
  88.       defaultVisitor.visit(this);
  89.     } else {
  90.       visitor.visit(this);
  91.     }
  92.   }
  93. }