StyleDropCapElement.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.StyleDistanceAttribute;
  32. import org.odftoolkit.odfdom.dom.attribute.style.StyleLengthAttribute;
  33. import org.odftoolkit.odfdom.dom.attribute.style.StyleLinesAttribute;
  34. import org.odftoolkit.odfdom.dom.attribute.style.StyleStyleNameAttribute;
  35. import org.odftoolkit.odfdom.dom.element.OdfStylableElement;
  36. import org.odftoolkit.odfdom.dom.style.OdfStyleFamily;
  37. import org.odftoolkit.odfdom.pkg.ElementVisitor;
  38. import org.odftoolkit.odfdom.pkg.OdfFileDom;
  39. import org.odftoolkit.odfdom.pkg.OdfName;

  40. /** DOM implementation of OpenDocument element {@odf.element style:drop-cap}. */
  41. public class StyleDropCapElement extends OdfStylableElement {

  42.   public static final OdfName ELEMENT_NAME =
  43.       OdfName.newName(OdfDocumentNamespace.STYLE, "drop-cap");

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

  56.   /**
  57.    * Get the element name
  58.    *
  59.    * @return return <code>OdfName</code> the name of element {@odf.element style:drop-cap}.
  60.    */
  61.   public OdfName getOdfName() {
  62.     return ELEMENT_NAME;
  63.   }

  64.   /**
  65.    * Receives the value of the ODFDOM attribute representation <code>StyleDistanceAttribute</code> ,
  66.    * See {@odf.attribute style:distance}
  67.    *
  68.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  69.    *     and no default value defined.
  70.    */
  71.   public String getStyleDistanceAttribute() {
  72.     StyleDistanceAttribute attr =
  73.         (StyleDistanceAttribute) getOdfAttribute(OdfDocumentNamespace.STYLE, "distance");
  74.     if (attr != null) {
  75.       return String.valueOf(attr.getValue());
  76.     }
  77.     return StyleDistanceAttribute.DEFAULT_VALUE;
  78.   }

  79.   /**
  80.    * Sets the value of ODFDOM attribute representation <code>StyleDistanceAttribute</code> , See
  81.    * {@odf.attribute style:distance}
  82.    *
  83.    * @param styleDistanceValue The type is <code>String</code>
  84.    */
  85.   public void setStyleDistanceAttribute(String styleDistanceValue) {
  86.     StyleDistanceAttribute attr = new StyleDistanceAttribute((OdfFileDom) this.ownerDocument);
  87.     setOdfAttribute(attr);
  88.     attr.setValue(styleDistanceValue);
  89.   }

  90.   /**
  91.    * Receives the value of the ODFDOM attribute representation <code>StyleLengthAttribute</code> ,
  92.    * See {@odf.attribute style:length}
  93.    *
  94.    * @return - the <code>Integer</code> , the value or <code>null</code>, if the attribute is not
  95.    *     set and no default value defined.
  96.    */
  97.   public Integer getStyleLengthAttribute() {
  98.     StyleLengthAttribute attr =
  99.         (StyleLengthAttribute) getOdfAttribute(OdfDocumentNamespace.STYLE, "length");
  100.     if (attr != null) {
  101.       return Integer.valueOf(attr.intValue());
  102.     }
  103.     return Integer.valueOf(StyleLengthAttribute.DEFAULT_VALUE);
  104.   }

  105.   /**
  106.    * Sets the value of ODFDOM attribute representation <code>StyleLengthAttribute</code> , See
  107.    * {@odf.attribute style:length}
  108.    *
  109.    * @param styleLengthValue The type is <code>Integer</code>
  110.    */
  111.   public void setStyleLengthAttribute(Integer styleLengthValue) {
  112.     StyleLengthAttribute attr = new StyleLengthAttribute((OdfFileDom) this.ownerDocument);
  113.     setOdfAttribute(attr);
  114.     attr.setIntValue(styleLengthValue.intValue());
  115.   }

  116.   /**
  117.    * Receives the value of the ODFDOM attribute representation <code>StyleLinesAttribute</code> ,
  118.    * See {@odf.attribute style:lines}
  119.    *
  120.    * @return - the <code>Integer</code> , the value or <code>null</code>, if the attribute is not
  121.    *     set and no default value defined.
  122.    */
  123.   public Integer getStyleLinesAttribute() {
  124.     StyleLinesAttribute attr =
  125.         (StyleLinesAttribute) getOdfAttribute(OdfDocumentNamespace.STYLE, "lines");
  126.     if (attr != null) {
  127.       return Integer.valueOf(attr.intValue());
  128.     }
  129.     return Integer.valueOf(StyleLinesAttribute.DEFAULT_VALUE);
  130.   }

  131.   /**
  132.    * Sets the value of ODFDOM attribute representation <code>StyleLinesAttribute</code> , See
  133.    * {@odf.attribute style:lines}
  134.    *
  135.    * @param styleLinesValue The type is <code>Integer</code>
  136.    */
  137.   public void setStyleLinesAttribute(Integer styleLinesValue) {
  138.     StyleLinesAttribute attr = new StyleLinesAttribute((OdfFileDom) this.ownerDocument);
  139.     setOdfAttribute(attr);
  140.     attr.setIntValue(styleLinesValue.intValue());
  141.   }

  142.   /**
  143.    * Receives the value of the ODFDOM attribute representation <code>StyleStyleNameAttribute</code>
  144.    * , See {@odf.attribute style:style-name}
  145.    *
  146.    * @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set
  147.    *     and no default value defined.
  148.    */
  149.   public String getStyleStyleNameAttribute() {
  150.     StyleStyleNameAttribute attr =
  151.         (StyleStyleNameAttribute) getOdfAttribute(OdfDocumentNamespace.STYLE, "style-name");
  152.     if (attr != null) {
  153.       return String.valueOf(attr.getValue());
  154.     }
  155.     return null;
  156.   }

  157.   /**
  158.    * Sets the value of ODFDOM attribute representation <code>StyleStyleNameAttribute</code> , See
  159.    * {@odf.attribute style:style-name}
  160.    *
  161.    * @param styleStyleNameValue The type is <code>String</code>
  162.    */
  163.   public void setStyleStyleNameAttribute(String styleStyleNameValue) {
  164.     StyleStyleNameAttribute attr = new StyleStyleNameAttribute((OdfFileDom) this.ownerDocument);
  165.     setOdfAttribute(attr);
  166.     attr.setValue(styleStyleNameValue);
  167.   }

  168.   @Override
  169.   public void accept(ElementVisitor visitor) {
  170.     if (visitor instanceof DefaultElementVisitor) {
  171.       DefaultElementVisitor defaultVisitor = (DefaultElementVisitor) visitor;
  172.       defaultVisitor.visit(this);
  173.     } else {
  174.       visitor.visit(this);
  175.     }
  176.   }
  177. }