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

  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 table:status}. */
  35. public class TableStatusAttribute extends OdfAttribute {

  36.   public static final OdfName ATTRIBUTE_NAME =
  37.       OdfName.newName(OdfDocumentNamespace.TABLE, "status");
  38.   public static final String DEFAULT_VALUE = "disable";

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

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

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

  61.   /** The value set of {@odf.attribute table:status}. */
  62.   public enum Value {
  63.     DISABLE("disable"),
  64.     ENABLE("enable");

  65.     private String mValue;

  66.     Value(String value) {
  67.       mValue = value;
  68.     }

  69.     @Override
  70.     public String toString() {
  71.       return mValue;
  72.     }

  73.     public static Value enumValueOf(String value) {
  74.       for (Value aIter : values()) {
  75.         if (value.equals(aIter.toString())) {
  76.           return aIter;
  77.         }
  78.       }
  79.       return null;
  80.     }
  81.   }

  82.   /** @param attrValue The <code>Enum</code> value of the attribute. */
  83.   public void setEnumValue(Value attrValue) {
  84.     setValue(attrValue.toString());
  85.   }

  86.   /** @return Returns the <code>Enum</code> value of the attribute */
  87.   public Value getEnumValue() {
  88.     return Value.enumValueOf(this.getValue());
  89.   }

  90.   /**
  91.    * Returns the default value of {@odf.attribute table:status}.
  92.    *
  93.    * @return the default value as <code>String</code> dependent of its element name return <code>
  94.    *     null</code> if the default value does not exist
  95.    */
  96.   @Override
  97.   public String getDefault() {
  98.     OdfElement parentElement = (OdfElement) getOwnerElement();
  99.     String defaultValue = null;
  100.     if (parentElement != null) {
  101.       defaultValue = DEFAULT_VALUE;
  102.     }
  103.     return defaultValue;
  104.   }

  105.   /**
  106.    * Default value indicator. As the attribute default value is dependent from its element, the
  107.    * attribute has only a default, when a parent element exists.
  108.    *
  109.    * @return <code>true</code> if {@odf.attribute table:status} has an element parent otherwise
  110.    *     return <code>false</code> as undefined.
  111.    */
  112.   @Override
  113.   public boolean hasDefault() {
  114.     return getOwnerElement() == null ? false : true;
  115.   }

  116.   /** @return Returns whether this attribute is known to be of type ID (i.e. xml:id ?) */
  117.   @Override
  118.   public boolean isId() {
  119.     return false;
  120.   }
  121. }