StyleMapElement.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.style;

  29. import org.odftoolkit.odfdom.dom.DefaultElementVisitor;
  30. import org.odftoolkit.odfdom.dom.OdfDocumentNamespace;
  31. import org.odftoolkit.odfdom.dom.attribute.style.StyleApplyStyleNameAttribute;
  32. import org.odftoolkit.odfdom.dom.attribute.style.StyleBaseCellAddressAttribute;
  33. import org.odftoolkit.odfdom.dom.attribute.style.StyleConditionAttribute;
  34. import org.odftoolkit.odfdom.pkg.ElementVisitor;
  35. import org.odftoolkit.odfdom.pkg.OdfElement;
  36. import org.odftoolkit.odfdom.pkg.OdfFileDom;
  37. import org.odftoolkit.odfdom.pkg.OdfName;

  38. /** DOM implementation of OpenDocument element {@odf.element style:map}. */
  39. public class StyleMapElement extends OdfElement {

  40.   public static final OdfName ELEMENT_NAME = OdfName.newName(OdfDocumentNamespace.STYLE, "map");

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

  49.   /**
  50.    * Get the element name
  51.    *
  52.    * @return return <code>OdfName</code> the name of element {@odf.element style:map}.
  53.    */
  54.   public OdfName getOdfName() {
  55.     return ELEMENT_NAME;
  56.   }

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

  75.   /**
  76.    * Sets the value of ODFDOM attribute representation <code>StyleApplyStyleNameAttribute</code> ,
  77.    * See {@odf.attribute style:apply-style-name}
  78.    *
  79.    * @param styleApplyStyleNameValue The type is <code>String</code>
  80.    */
  81.   public void setStyleApplyStyleNameAttribute(String styleApplyStyleNameValue) {
  82.     StyleApplyStyleNameAttribute attr =
  83.         new StyleApplyStyleNameAttribute((OdfFileDom) this.ownerDocument);
  84.     setOdfAttribute(attr);
  85.     attr.setValue(styleApplyStyleNameValue);
  86.   }

  87.   /**
  88.    * Receives the value of the ODFDOM attribute representation <code>StyleBaseCellAddressAttribute
  89.    * </code> , See {@odf.attribute style:base-cell-address}
  90.    *
  91.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  92.    *     and no default value defined.
  93.    */
  94.   public String getStyleBaseCellAddressAttribute() {
  95.     StyleBaseCellAddressAttribute attr =
  96.         (StyleBaseCellAddressAttribute)
  97.             getOdfAttribute(OdfDocumentNamespace.STYLE, "base-cell-address");
  98.     if (attr != null) {
  99.       return String.valueOf(attr.getValue());
  100.     }
  101.     return null;
  102.   }

  103.   /**
  104.    * Sets the value of ODFDOM attribute representation <code>StyleBaseCellAddressAttribute</code> ,
  105.    * See {@odf.attribute style:base-cell-address}
  106.    *
  107.    * @param styleBaseCellAddressValue The type is <code>String</code>
  108.    */
  109.   public void setStyleBaseCellAddressAttribute(String styleBaseCellAddressValue) {
  110.     StyleBaseCellAddressAttribute attr =
  111.         new StyleBaseCellAddressAttribute((OdfFileDom) this.ownerDocument);
  112.     setOdfAttribute(attr);
  113.     attr.setValue(styleBaseCellAddressValue);
  114.   }

  115.   /**
  116.    * Receives the value of the ODFDOM attribute representation <code>StyleConditionAttribute</code>
  117.    * , See {@odf.attribute style:condition}
  118.    *
  119.    * <p>Attribute is mandatory.
  120.    *
  121.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  122.    *     and no default value defined.
  123.    */
  124.   public String getStyleConditionAttribute() {
  125.     StyleConditionAttribute attr =
  126.         (StyleConditionAttribute) getOdfAttribute(OdfDocumentNamespace.STYLE, "condition");
  127.     if (attr != null) {
  128.       return String.valueOf(attr.getValue());
  129.     }
  130.     return null;
  131.   }

  132.   /**
  133.    * Sets the value of ODFDOM attribute representation <code>StyleConditionAttribute</code> , See
  134.    * {@odf.attribute style:condition}
  135.    *
  136.    * @param styleConditionValue The type is <code>String</code>
  137.    */
  138.   public void setStyleConditionAttribute(String styleConditionValue) {
  139.     StyleConditionAttribute attr = new StyleConditionAttribute((OdfFileDom) this.ownerDocument);
  140.     setOdfAttribute(attr);
  141.     attr.setValue(styleConditionValue);
  142.   }

  143.   @Override
  144.   public void accept(ElementVisitor visitor) {
  145.     if (visitor instanceof DefaultElementVisitor) {
  146.       DefaultElementVisitor defaultVisitor = (DefaultElementVisitor) visitor;
  147.       defaultVisitor.visit(this);
  148.     } else {
  149.       visitor.visit(this);
  150.     }
  151.   }
  152. }