TableCutOffsElement.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.pkg.ElementVisitor;
  32. import org.odftoolkit.odfdom.pkg.OdfElement;
  33. import org.odftoolkit.odfdom.pkg.OdfFileDom;
  34. import org.odftoolkit.odfdom.pkg.OdfName;

  35. /** DOM implementation of OpenDocument element {@odf.element table:cut-offs}. */
  36. public class TableCutOffsElement extends OdfElement {

  37.   public static final OdfName ELEMENT_NAME =
  38.       OdfName.newName(OdfDocumentNamespace.TABLE, "cut-offs");

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

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

  55.   /**
  56.    * Create child element {@odf.element table:insertion-cut-off}.
  57.    *
  58.    * @param tableIdValue the <code>String</code> value of <code>TableIdAttribute</code>, see
  59.    *     {@odf.attribute table:id} at specification
  60.    * @param tablePositionValue the <code>Integer</code> value of <code>TablePositionAttribute</code>
  61.    *     , see {@odf.attribute table:position} at specification
  62.    * @return the element {@odf.element table:insertion-cut-off}
  63.    */
  64.   public TableInsertionCutOffElement newTableInsertionCutOffElement(
  65.       String tableIdValue, int tablePositionValue) {
  66.     TableInsertionCutOffElement tableInsertionCutOff =
  67.         ((OdfFileDom) this.ownerDocument).newOdfElement(TableInsertionCutOffElement.class);
  68.     tableInsertionCutOff.setTableIdAttribute(tableIdValue);
  69.     tableInsertionCutOff.setTablePositionAttribute(tablePositionValue);
  70.     this.appendChild(tableInsertionCutOff);
  71.     return tableInsertionCutOff;
  72.   }

  73.   /**
  74.    * Create child element {@odf.element table:movement-cut-off}.
  75.    *
  76.    * @return the element {@odf.element table:movement-cut-off}
  77.    */
  78.   public TableMovementCutOffElement newTableMovementCutOffElement() {
  79.     TableMovementCutOffElement tableMovementCutOff =
  80.         ((OdfFileDom) this.ownerDocument).newOdfElement(TableMovementCutOffElement.class);
  81.     this.appendChild(tableMovementCutOff);
  82.     return tableMovementCutOff;
  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. }