VersionAttribute.java

  1. /**
  2.  * **********************************************************************
  3.  *
  4.  * <p>DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER
  5.  *
  6.  * <p>Use is subject to license terms.
  7.  *
  8.  * <p>Licensed to the Apache Software Foundation (ASF) under one or more contributor license
  9.  * agreements. See the NOTICE file distributed with this work for additional information regarding
  10.  * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the
  11.  * "License"); you may not use this file except in compliance with the License. You may obtain a
  12.  * copy of the License at
  13.  *
  14.  * <p>http://www.apache.org/licenses/LICENSE-2.0
  15.  *
  16.  * <p>Unless required by applicable law or agreed to in writing, software distributed under the
  17.  * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
  18.  * express or implied.
  19.  *
  20.  * <p>See the License for the specific language governing permissions and limitations under the
  21.  * License.
  22.  *
  23.  * <p>**********************************************************************
  24.  */

  25. /*
  26.  * This file is automatically generated.
  27.  * Don't edit manually.
  28.  */
  29. package org.odftoolkit.odfdom.pkg.manifest;

  30. import org.odftoolkit.odfdom.pkg.OdfAttribute;
  31. import org.odftoolkit.odfdom.pkg.OdfFileDom;
  32. import org.odftoolkit.odfdom.pkg.OdfName;
  33. import org.odftoolkit.odfdom.pkg.OdfPackageNamespace;

  34. /** Manifest implementation of OpenDocument attribute {@odf.attribute manifest:version}. */
  35. public class VersionAttribute extends OdfAttribute {

  36.   public static final OdfName ATTRIBUTE_NAME =
  37.       OdfName.newName(OdfPackageNamespace.MANIFEST, "version");

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

  46.   /**
  47.    * Returns the attribute name.
  48.    *
  49.    * @return the <code>OdfName</code> for {@odf.attribute manifest:version}.
  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.   /** The value set of {@odf.attribute manifest:version}. */
  61.   public enum Value {
  62.     _1_2("1.2");

  63.     private String mValue;

  64.     Value(String value) {
  65.       mValue = value;
  66.     }

  67.     @Override
  68.     public String toString() {
  69.       return mValue;
  70.     }

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

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

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

  88.   /**
  89.    * @param attrValue The <code>String</code> value of the attribute.
  90.    * @throws IllegalArgumentException If the provided attribute value is invalid
  91.    */
  92.   @Override
  93.   public void setValue(String attrValue) {
  94.     // Since we have not only enumValues, but also a DataType, we use String as common base and
  95.     // don't validate.
  96.     super.setValue(attrValue);
  97.   }

  98.   /** @return Returns the <code>String</code> value of the attribute */
  99.   @Override
  100.   public String getValue() {
  101.     // Since we have not only enumValues, but also a DataType, we use String as common base and
  102.     // don't validate.
  103.     return super.getValue();
  104.   }

  105.   /**
  106.    * Returns the default value of {@odf.attribute manifest:version}.
  107.    *
  108.    * @return the default value as <code>String</code> dependent of its element name return <code>
  109.    *     null</code> if the default value does not exist
  110.    */
  111.   @Override
  112.   public String getDefault() {
  113.     return null;
  114.   }

  115.   /**
  116.    * Default value indicator. As the attribute default value is dependent from its element, the
  117.    * attribute has only a default, when a parent element exists.
  118.    *
  119.    * @return <code>true</code> if {@odf.attribute manifest:version} has an element parent otherwise
  120.    *     return <code>false</code> as undefined.
  121.    */
  122.   @Override
  123.   public boolean hasDefault() {
  124.     return false;
  125.   }

  126.   /** @return Returns whether this attribute is known to be of type ID (i.e. xml:id ?) */
  127.   @Override
  128.   public boolean isId() {
  129.     return false;
  130.   }
  131. }