All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.odftoolkit.odfdom.dom.attribute.number.NumberMinIntegerDigitsAttribute Maven / Gradle / Ivy

Go to download

ODFDOM is an OpenDocument Format (ODF) framework. Its purpose is to provide an easy common way to create, access and manipulate ODF files, without requiring detailed knowledge of the ODF specification. It is designed to provide the ODF developer community with an easy lightwork programming API portable to any object-oriented language. The current reference implementation is written in Java.

There is a newer version: 1.0.0-BETA1
Show newest version
/**
 * **********************************************************************
 *
 * 

DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER * *

Copyright 2008, 2010 Oracle and/or its affiliates. All rights reserved. * *

Use is subject to license terms. * *

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0. You can also obtain a copy of the License at * http://odftoolkit.org/docs/license.txt * *

Unless required by applicable law or agreed to in writing, software distributed under the * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. * *

See the License for the specific language governing permissions and limitations under the * License. * *

********************************************************************** */ /* * This file is automatically generated. * Don't edit manually. */ package org.odftoolkit.odfdom.dom.attribute.number; import org.odftoolkit.odfdom.dom.OdfDocumentNamespace; import org.odftoolkit.odfdom.pkg.OdfAttribute; import org.odftoolkit.odfdom.pkg.OdfFileDom; import org.odftoolkit.odfdom.pkg.OdfName; /** DOM implementation of OpenDocument attribute {@odf.attribute number:min-integer-digits}. */ public class NumberMinIntegerDigitsAttribute extends OdfAttribute { public static final OdfName ATTRIBUTE_NAME = OdfName.newName(OdfDocumentNamespace.NUMBER, "min-integer-digits"); /** * Create the instance of OpenDocument attribute {@odf.attribute number:min-integer-digits}. * * @param ownerDocument The type is OdfFileDom */ public NumberMinIntegerDigitsAttribute(OdfFileDom ownerDocument) { super(ownerDocument, ATTRIBUTE_NAME); } /** * Returns the attribute name. * * @return the OdfName for {@odf.attribute number:min-integer-digits}. */ @Override public OdfName getOdfName() { return ATTRIBUTE_NAME; } /** @return Returns the name of this attribute. */ @Override public String getName() { return ATTRIBUTE_NAME.getLocalName(); } /** @param value The int value of the attribute. */ public void setIntValue(int value) { super.setValue(String.valueOf(value)); } /** @return Returns the int value of the attribute */ public int intValue() { String val = super.getValue(); try { return Integer.parseInt(val); } catch (NumberFormatException e) { // TODO: validation handling/logging throw (e); } } /** * Returns the default value of {@odf.attribute number:min-integer-digits}. * * @return the default value as String dependent of its element name return * null if the default value does not exist */ @Override public String getDefault() { return null; } /** * Default value indicator. As the attribute default value is dependent from its element, the * attribute has only a default, when a parent element exists. * * @return true if {@odf.attribute number:min-integer-digits} has an element parent * otherwise return false as undefined. */ @Override public boolean hasDefault() { return false; } /** @return Returns whether this attribute is known to be of type ID (i.e. xml:id ?) */ @Override public boolean isId() { return false; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy