![JAR search and dependency download from the Maven repository](/logo.png)
org.odftoolkit.odfdom.dom.element.style.StyleColumnSepElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of odfdom-java Show documentation
Show all versions of odfdom-java Show documentation
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.
/************************************************************************
*
* 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.StyleColorAttribute;
import org.odftoolkit.odfdom.dom.attribute.style.StyleHeightAttribute;
import org.odftoolkit.odfdom.dom.attribute.style.StyleStyleAttribute;
import org.odftoolkit.odfdom.dom.attribute.style.StyleVerticalAlignAttribute;
import org.odftoolkit.odfdom.dom.attribute.style.StyleWidthAttribute;
/**
* DOM implementation of OpenDocument element {@odf.element style:column-sep}.
*
*/
public class StyleColumnSepElement extends OdfElement {
public static final OdfName ELEMENT_NAME = OdfName.newName(OdfDocumentNamespace.STYLE, "column-sep");
/**
* Create the instance of StyleColumnSepElement
*
* @param ownerDoc The type is OdfFileDom
*/
public StyleColumnSepElement(OdfFileDom ownerDoc) {
super(ownerDoc, ELEMENT_NAME);
}
/**
* Get the element name
*
* @return return OdfName
the name of element {@odf.element style:column-sep}.
*/
public OdfName getOdfName() {
return ELEMENT_NAME;
}
/**
* 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 StyleColorAttribute.DEFAULT_VALUE;
}
/**
* 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 StyleHeightAttribute
, See {@odf.attribute style:height}
*
* @return - the String
, the value or null
, if the attribute is not set and no default value defined.
*/
public String getStyleHeightAttribute() {
StyleHeightAttribute attr = (StyleHeightAttribute) getOdfAttribute(OdfDocumentNamespace.STYLE, "height");
if (attr != null) {
return String.valueOf(attr.getValue());
}
return StyleHeightAttribute.DEFAULT_VALUE;
}
/**
* Sets the value of ODFDOM attribute representation StyleHeightAttribute
, See {@odf.attribute style:height}
*
* @param styleHeightValue The type is String
*/
public void setStyleHeightAttribute(String styleHeightValue) {
StyleHeightAttribute attr = new StyleHeightAttribute((OdfFileDom) this.ownerDocument);
setOdfAttribute(attr);
attr.setValue(styleHeightValue);
}
/**
* Receives the value of the ODFDOM attribute representation StyleStyleAttribute
, See {@odf.attribute style:style}
*
* @return - the String
, the value or null
, if the attribute is not set and no default value defined.
*/
public String getStyleStyleAttribute() {
StyleStyleAttribute attr = (StyleStyleAttribute) getOdfAttribute(OdfDocumentNamespace.STYLE, "style");
if (attr != null) {
return String.valueOf(attr.getValue());
}
return StyleStyleAttribute.DEFAULT_VALUE;
}
/**
* Sets the value of ODFDOM attribute representation StyleStyleAttribute
, See {@odf.attribute style:style}
*
* @param styleStyleValue The type is String
*/
public void setStyleStyleAttribute(String styleStyleValue) {
StyleStyleAttribute attr = new StyleStyleAttribute((OdfFileDom) this.ownerDocument);
setOdfAttribute(attr);
attr.setValue(styleStyleValue);
}
/**
* Receives the value of the ODFDOM attribute representation StyleVerticalAlignAttribute
, See {@odf.attribute style:vertical-align}
*
* @return - the String
, the value or null
, if the attribute is not set and no default value defined.
*/
public String getStyleVerticalAlignAttribute() {
StyleVerticalAlignAttribute attr = (StyleVerticalAlignAttribute) getOdfAttribute(OdfDocumentNamespace.STYLE, "vertical-align");
if (attr != null) {
return String.valueOf(attr.getValue());
}
return StyleVerticalAlignAttribute.DEFAULT_VALUE;
}
/**
* Sets the value of ODFDOM attribute representation StyleVerticalAlignAttribute
, See {@odf.attribute style:vertical-align}
*
* @param styleVerticalAlignValue The type is String
*/
public void setStyleVerticalAlignAttribute(String styleVerticalAlignValue) {
StyleVerticalAlignAttribute attr = new StyleVerticalAlignAttribute((OdfFileDom) this.ownerDocument);
setOdfAttribute(attr);
attr.setValue(styleVerticalAlignValue);
}
/**
* Receives the value of the ODFDOM attribute representation StyleWidthAttribute
, See {@odf.attribute style:width}
*
* Attribute is mandatory.
*
* @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 - 2025 Weber Informatics LLC | Privacy Policy