TextGlobalAttribute.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.attribute.text;

  29. import org.odftoolkit.odfdom.dom.OdfDocumentNamespace;
  30. import org.odftoolkit.odfdom.pkg.OdfAttribute;
  31. import org.odftoolkit.odfdom.pkg.OdfElement;
  32. import org.odftoolkit.odfdom.pkg.OdfFileDom;
  33. import org.odftoolkit.odfdom.pkg.OdfName;

  34. /** DOM implementation of OpenDocument attribute {@odf.attribute text:global}. */
  35. public class TextGlobalAttribute extends OdfAttribute {

  36.   public static final OdfName ATTRIBUTE_NAME = OdfName.newName(OdfDocumentNamespace.TEXT, "global");
  37.   public static final String DEFAULT_VALUE = "false";

  38.   /**
  39.    * Create the instance of OpenDocument attribute {@odf.attribute text:global}.
  40.    *
  41.    * @param ownerDocument The type is <code>OdfFileDom</code>
  42.    */
  43.   public TextGlobalAttribute(OdfFileDom ownerDocument) {
  44.     super(ownerDocument, ATTRIBUTE_NAME);
  45.   }

  46.   /**
  47.    * Returns the attribute name.
  48.    *
  49.    * @return the <code>OdfName</code> for {@odf.attribute text:global}.
  50.    */
  51.   @Override
  52.   public OdfName getOdfName() {
  53.     return ATTRIBUTE_NAME;
  54.   }

  55.   /** @return Returns the name of this attribute. */
  56.   @Override
  57.   public String getName() {
  58.     return ATTRIBUTE_NAME.getLocalName();
  59.   }

  60.   /** @param value The <code>boolean</code> value of the attribute. */
  61.   public void setBooleanValue(boolean value) {
  62.     super.setValue(String.valueOf(value));
  63.   }

  64.   /** @return Returns the <code>boolean</code> value of the attribute */
  65.   public boolean booleanValue() {
  66.     String val = super.getValue();
  67.     try {
  68.       return Boolean.parseBoolean(val);
  69.     } catch (NumberFormatException e) {
  70.       // TODO: validation handling/logging
  71.       throw (e);
  72.     }
  73.   }

  74.   /**
  75.    * Returns the default value of {@odf.attribute text:global}.
  76.    *
  77.    * @return the default value as <code>String</code> dependent of its element name return <code>
  78.    *     null</code> if the default value does not exist
  79.    */
  80.   @Override
  81.   public String getDefault() {
  82.     OdfElement parentElement = (OdfElement) getOwnerElement();
  83.     String defaultValue = null;
  84.     if (parentElement != null) {
  85.       defaultValue = DEFAULT_VALUE;
  86.     }
  87.     return defaultValue;
  88.   }

  89.   /**
  90.    * Default value indicator. As the attribute default value is dependent from its element, the
  91.    * attribute has only a default, when a parent element exists.
  92.    *
  93.    * @return <code>true</code> if {@odf.attribute text:global} has an element parent otherwise
  94.    *     return <code>false</code> as undefined.
  95.    */
  96.   @Override
  97.   public boolean hasDefault() {
  98.     return getOwnerElement() == null ? false : true;
  99.   }

  100.   /** @return Returns whether this attribute is known to be of type ID (i.e. xml:id ?) */
  101.   @Override
  102.   public boolean isId() {
  103.     return false;
  104.   }
  105. }