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

org.odftoolkit.odfdom.dom.element.style.StyleFootnoteSepElement 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.

The 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.style;

import org.odftoolkit.odfdom.pkg.OdfElement;
import org.odftoolkit.odfdom.pkg.ElementVisitor;
import org.odftoolkit.odfdom.pkg.OdfFileDom;
import org.odftoolkit.odfdom.pkg.OdfName;
import org.odftoolkit.odfdom.dom.OdfDocumentNamespace;
import org.odftoolkit.odfdom.dom.DefaultElementVisitor;
import org.odftoolkit.odfdom.dom.attribute.style.StyleAdjustmentAttribute;
import org.odftoolkit.odfdom.dom.attribute.style.StyleColorAttribute;
import org.odftoolkit.odfdom.dom.attribute.style.StyleDistanceAfterSepAttribute;
import org.odftoolkit.odfdom.dom.attribute.style.StyleDistanceBeforeSepAttribute;
import org.odftoolkit.odfdom.dom.attribute.style.StyleLineStyleAttribute;
import org.odftoolkit.odfdom.dom.attribute.style.StyleRelWidthAttribute;
import org.odftoolkit.odfdom.dom.attribute.style.StyleWidthAttribute;

/**
 * DOM implementation of OpenDocument element  {@odf.element style:footnote-sep}.
 *
 */
public class StyleFootnoteSepElement extends OdfElement {

	public static final OdfName ELEMENT_NAME = OdfName.newName(OdfDocumentNamespace.STYLE, "footnote-sep");

	/**
	 * Create the instance of StyleFootnoteSepElement
	 *
	 * @param  ownerDoc     The type is OdfFileDom
	 */
	public StyleFootnoteSepElement(OdfFileDom ownerDoc) {
		super(ownerDoc, ELEMENT_NAME);
	}

	/**
	 * Get the element name
	 *
	 * @return  return   OdfName the name of element {@odf.element style:footnote-sep}.
	 */
	public OdfName getOdfName() {
		return ELEMENT_NAME;
	}

	/**
	 * Receives the value of the ODFDOM attribute representation StyleAdjustmentAttribute , See {@odf.attribute style:adjustment}
	 *
	 * @return - the String , the value or null, if the attribute is not set and no default value defined.
	 */
	public String getStyleAdjustmentAttribute() {
		StyleAdjustmentAttribute attr = (StyleAdjustmentAttribute) getOdfAttribute(OdfDocumentNamespace.STYLE, "adjustment");
		if (attr != null) {
			return String.valueOf(attr.getValue());
		}
		return StyleAdjustmentAttribute.DEFAULT_VALUE;
	}

	/**
	 * Sets the value of ODFDOM attribute representation StyleAdjustmentAttribute , See {@odf.attribute style:adjustment}
	 *
	 * @param styleAdjustmentValue   The type is String
	 */
	public void setStyleAdjustmentAttribute(String styleAdjustmentValue) {
		StyleAdjustmentAttribute attr = new StyleAdjustmentAttribute((OdfFileDom) this.ownerDocument);
		setOdfAttribute(attr);
		attr.setValue(styleAdjustmentValue);
	}

	/**
	 * Receives the value of the ODFDOM attribute representation StyleColorAttribute , See {@odf.attribute style:color}
	 *
	 * @return - the String , the value or null, if the attribute is not set and no default value defined.
	 */
	public String getStyleColorAttribute() {
		StyleColorAttribute attr = (StyleColorAttribute) getOdfAttribute(OdfDocumentNamespace.STYLE, "color");
		if (attr != null) {
			return String.valueOf(attr.getValue());
		}
		return null;
	}

	/**
	 * Sets the value of ODFDOM attribute representation StyleColorAttribute , See {@odf.attribute style:color}
	 *
	 * @param styleColorValue   The type is String
	 */
	public void setStyleColorAttribute(String styleColorValue) {
		StyleColorAttribute attr = new StyleColorAttribute((OdfFileDom) this.ownerDocument);
		setOdfAttribute(attr);
		attr.setValue(styleColorValue);
	}

	/**
	 * Receives the value of the ODFDOM attribute representation StyleDistanceAfterSepAttribute , See {@odf.attribute style:distance-after-sep}
	 *
	 * @return - the String , the value or null, if the attribute is not set and no default value defined.
	 */
	public String getStyleDistanceAfterSepAttribute() {
		StyleDistanceAfterSepAttribute attr = (StyleDistanceAfterSepAttribute) getOdfAttribute(OdfDocumentNamespace.STYLE, "distance-after-sep");
		if (attr != null) {
			return String.valueOf(attr.getValue());
		}
		return null;
	}

	/**
	 * Sets the value of ODFDOM attribute representation StyleDistanceAfterSepAttribute , See {@odf.attribute style:distance-after-sep}
	 *
	 * @param styleDistanceAfterSepValue   The type is String
	 */
	public void setStyleDistanceAfterSepAttribute(String styleDistanceAfterSepValue) {
		StyleDistanceAfterSepAttribute attr = new StyleDistanceAfterSepAttribute((OdfFileDom) this.ownerDocument);
		setOdfAttribute(attr);
		attr.setValue(styleDistanceAfterSepValue);
	}

	/**
	 * Receives the value of the ODFDOM attribute representation StyleDistanceBeforeSepAttribute , See {@odf.attribute style:distance-before-sep}
	 *
	 * @return - the String , the value or null, if the attribute is not set and no default value defined.
	 */
	public String getStyleDistanceBeforeSepAttribute() {
		StyleDistanceBeforeSepAttribute attr = (StyleDistanceBeforeSepAttribute) getOdfAttribute(OdfDocumentNamespace.STYLE, "distance-before-sep");
		if (attr != null) {
			return String.valueOf(attr.getValue());
		}
		return null;
	}

	/**
	 * Sets the value of ODFDOM attribute representation StyleDistanceBeforeSepAttribute , See {@odf.attribute style:distance-before-sep}
	 *
	 * @param styleDistanceBeforeSepValue   The type is String
	 */
	public void setStyleDistanceBeforeSepAttribute(String styleDistanceBeforeSepValue) {
		StyleDistanceBeforeSepAttribute attr = new StyleDistanceBeforeSepAttribute((OdfFileDom) this.ownerDocument);
		setOdfAttribute(attr);
		attr.setValue(styleDistanceBeforeSepValue);
	}

	/**
	 * Receives the value of the ODFDOM attribute representation StyleLineStyleAttribute , See {@odf.attribute style:line-style}
	 *
	 * @return - the String , the value or null, if the attribute is not set and no default value defined.
	 */
	public String getStyleLineStyleAttribute() {
		StyleLineStyleAttribute attr = (StyleLineStyleAttribute) getOdfAttribute(OdfDocumentNamespace.STYLE, "line-style");
		if (attr != null) {
			return String.valueOf(attr.getValue());
		}
		return null;
	}

	/**
	 * Sets the value of ODFDOM attribute representation StyleLineStyleAttribute , See {@odf.attribute style:line-style}
	 *
	 * @param styleLineStyleValue   The type is String
	 */
	public void setStyleLineStyleAttribute(String styleLineStyleValue) {
		StyleLineStyleAttribute attr = new StyleLineStyleAttribute((OdfFileDom) this.ownerDocument);
		setOdfAttribute(attr);
		attr.setValue(styleLineStyleValue);
	}

	/**
	 * Receives the value of the ODFDOM attribute representation StyleRelWidthAttribute , See {@odf.attribute style:rel-width}
	 *
	 * @return - the String , the value or null, if the attribute is not set and no default value defined.
	 */
	public String getStyleRelWidthAttribute() {
		StyleRelWidthAttribute attr = (StyleRelWidthAttribute) getOdfAttribute(OdfDocumentNamespace.STYLE, "rel-width");
		if (attr != null) {
			return String.valueOf(attr.getValue());
		}
		return null;
	}

	/**
	 * Sets the value of ODFDOM attribute representation StyleRelWidthAttribute , See {@odf.attribute style:rel-width}
	 *
	 * @param styleRelWidthValue   The type is String
	 */
	public void setStyleRelWidthAttribute(String styleRelWidthValue) {
		StyleRelWidthAttribute attr = new StyleRelWidthAttribute((OdfFileDom) this.ownerDocument);
		setOdfAttribute(attr);
		attr.setValue(styleRelWidthValue);
	}

	/**
	 * Receives the value of the ODFDOM attribute representation StyleWidthAttribute , See {@odf.attribute style:width}
	 *
	 * @return - the String , the value or null, if the attribute is not set and no default value defined.
	 */
	public String getStyleWidthAttribute() {
		StyleWidthAttribute attr = (StyleWidthAttribute) getOdfAttribute(OdfDocumentNamespace.STYLE, "width");
		if (attr != null) {
			return String.valueOf(attr.getValue());
		}
		return null;
	}

	/**
	 * Sets the value of ODFDOM attribute representation StyleWidthAttribute , See {@odf.attribute style:width}
	 *
	 * @param styleWidthValue   The type is String
	 */
	public void setStyleWidthAttribute(String styleWidthValue) {
		StyleWidthAttribute attr = new StyleWidthAttribute((OdfFileDom) this.ownerDocument);
		setOdfAttribute(attr);
		attr.setValue(styleWidthValue);
	}

	@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