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

org.odftoolkit.odfdom.dom.element.number.NumberDateStyleElement 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.element.number; import org.odftoolkit.odfdom.dom.DefaultElementVisitor; import org.odftoolkit.odfdom.dom.OdfDocumentNamespace; import org.odftoolkit.odfdom.dom.attribute.number.NumberAutomaticOrderAttribute; import org.odftoolkit.odfdom.dom.attribute.number.NumberFormatSourceAttribute; import org.odftoolkit.odfdom.pkg.ElementVisitor; import org.odftoolkit.odfdom.pkg.OdfFileDom; import org.odftoolkit.odfdom.pkg.OdfName; /** DOM implementation of OpenDocument element {@odf.element number:date-style}. */ public abstract class NumberDateStyleElement extends NumberDataStyleElementBase { public static final OdfName ELEMENT_NAME = OdfName.newName(OdfDocumentNamespace.NUMBER, "date-style"); /** * Create the instance of NumberDateStyleElement * * @param ownerDoc The type is OdfFileDom */ public NumberDateStyleElement(OdfFileDom ownerDoc) { super(ownerDoc, ELEMENT_NAME); } /** * Get the element name * * @return return OdfName the name of element {@odf.element number:date-style}. */ public OdfName getOdfName() { return ELEMENT_NAME; } /** * Receives the value of the ODFDOM attribute representation NumberAutomaticOrderAttribute * , See {@odf.attribute number:automatic-order} * * @return - the Boolean , the value or null, if the attribute is not * set and no default value defined. */ public Boolean getNumberAutomaticOrderAttribute() { NumberAutomaticOrderAttribute attr = (NumberAutomaticOrderAttribute) getOdfAttribute(OdfDocumentNamespace.NUMBER, "automatic-order"); if (attr != null && !attr.getValue().isEmpty()) { return Boolean.valueOf(attr.booleanValue()); } return Boolean.valueOf(NumberAutomaticOrderAttribute.DEFAULT_VALUE); } /** * Sets the value of ODFDOM attribute representation NumberAutomaticOrderAttribute , * See {@odf.attribute number:automatic-order} * * @param numberAutomaticOrderValue The type is Boolean */ public void setNumberAutomaticOrderAttribute(Boolean numberAutomaticOrderValue) { NumberAutomaticOrderAttribute attr = new NumberAutomaticOrderAttribute((OdfFileDom) this.ownerDocument); setOdfAttribute(attr); attr.setBooleanValue(numberAutomaticOrderValue.booleanValue()); } /** * Receives the value of the ODFDOM attribute representation NumberFormatSourceAttribute * , See {@odf.attribute number:format-source} * * @return - the String , the value or null, if the attribute is not set * and no default value defined. */ public String getNumberFormatSourceAttribute() { NumberFormatSourceAttribute attr = (NumberFormatSourceAttribute) getOdfAttribute(OdfDocumentNamespace.NUMBER, "format-source"); if (attr != null) { return String.valueOf(attr.getValue()); } return NumberFormatSourceAttribute.DEFAULT_VALUE; } /** * Sets the value of ODFDOM attribute representation NumberFormatSourceAttribute , * See {@odf.attribute number:format-source} * * @param numberFormatSourceValue The type is String */ public void setNumberFormatSourceAttribute(String numberFormatSourceValue) { NumberFormatSourceAttribute attr = new NumberFormatSourceAttribute((OdfFileDom) this.ownerDocument); setOdfAttribute(attr); attr.setValue(numberFormatSourceValue); } /** * Create child element {@odf.element number:am-pm}. * * @return the element {@odf.element number:am-pm} */ public NumberAmPmElement newNumberAmPmElement() { NumberAmPmElement numberAmPm = ((OdfFileDom) this.ownerDocument).newOdfElement(NumberAmPmElement.class); this.appendChild(numberAmPm); return numberAmPm; } /** * Create child element {@odf.element number:day}. * * @return the element {@odf.element number:day} */ public NumberDayElement newNumberDayElement() { NumberDayElement numberDay = ((OdfFileDom) this.ownerDocument).newOdfElement(NumberDayElement.class); this.appendChild(numberDay); return numberDay; } /** * Create child element {@odf.element number:day-of-week}. * * @return the element {@odf.element number:day-of-week} */ public NumberDayOfWeekElement newNumberDayOfWeekElement() { NumberDayOfWeekElement numberDayOfWeek = ((OdfFileDom) this.ownerDocument).newOdfElement(NumberDayOfWeekElement.class); this.appendChild(numberDayOfWeek); return numberDayOfWeek; } /** * Create child element {@odf.element number:era}. * * @return the element {@odf.element number:era} */ public NumberEraElement newNumberEraElement() { NumberEraElement numberEra = ((OdfFileDom) this.ownerDocument).newOdfElement(NumberEraElement.class); this.appendChild(numberEra); return numberEra; } /** * Create child element {@odf.element number:hours}. * * @return the element {@odf.element number:hours} */ public NumberHoursElement newNumberHoursElement() { NumberHoursElement numberHours = ((OdfFileDom) this.ownerDocument).newOdfElement(NumberHoursElement.class); this.appendChild(numberHours); return numberHours; } /** * Create child element {@odf.element number:minutes}. * * @return the element {@odf.element number:minutes} */ public NumberMinutesElement newNumberMinutesElement() { NumberMinutesElement numberMinutes = ((OdfFileDom) this.ownerDocument).newOdfElement(NumberMinutesElement.class); this.appendChild(numberMinutes); return numberMinutes; } /** * Create child element {@odf.element number:month}. * * @return the element {@odf.element number:month} */ public NumberMonthElement newNumberMonthElement() { NumberMonthElement numberMonth = ((OdfFileDom) this.ownerDocument).newOdfElement(NumberMonthElement.class); this.appendChild(numberMonth); return numberMonth; } /** * Create child element {@odf.element number:quarter}. * * @return the element {@odf.element number:quarter} */ public NumberQuarterElement newNumberQuarterElement() { NumberQuarterElement numberQuarter = ((OdfFileDom) this.ownerDocument).newOdfElement(NumberQuarterElement.class); this.appendChild(numberQuarter); return numberQuarter; } /** * Create child element {@odf.element number:seconds}. * * @return the element {@odf.element number:seconds} */ public NumberSecondsElement newNumberSecondsElement() { NumberSecondsElement numberSeconds = ((OdfFileDom) this.ownerDocument).newOdfElement(NumberSecondsElement.class); this.appendChild(numberSeconds); return numberSeconds; } /** * Create child element {@odf.element number:week-of-year}. * * @return the element {@odf.element number:week-of-year} */ public NumberWeekOfYearElement newNumberWeekOfYearElement() { NumberWeekOfYearElement numberWeekOfYear = ((OdfFileDom) this.ownerDocument).newOdfElement(NumberWeekOfYearElement.class); this.appendChild(numberWeekOfYear); return numberWeekOfYear; } /** * Create child element {@odf.element number:year}. * * @return the element {@odf.element number:year} */ public NumberYearElement newNumberYearElement() { NumberYearElement numberYear = ((OdfFileDom) this.ownerDocument).newOdfElement(NumberYearElement.class); this.appendChild(numberYear); return numberYear; } /** * Accept an visitor instance to allow the visitor to do some operations. Refer to visitor design * pattern to get a better understanding. * * @param visitor an instance of DefaultElementVisitor */ @Override public void accept(ElementVisitor visitor) { if (visitor instanceof DefaultElementVisitor) { DefaultElementVisitor defaultVisitor = (DefaultElementVisitor) visitor; defaultVisitor.visit(this); } else { visitor.visit(this); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy