com.alphasystem.docx4j.builder.wml.CTVerticalAlignRunBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of open-xml-builder Show documentation
Show all versions of open-xml-builder Show documentation
Alpha system commons library
package com.alphasystem.docx4j.builder.wml;
import com.alphasystem.docx4j.builder.OpenXmlBuilder;
import org.docx4j.wml.CTVerticalAlignRun;
import org.docx4j.wml.STVerticalAlignRun;
/**
* Fluent API builder for org.docx4j.wml.CTVerticalAlignRun
.
*
*/
public class CTVerticalAlignRunBuilder
extends OpenXmlBuilder
{
/**
* Initialize the underlying object.
*
*/
public CTVerticalAlignRunBuilder() {
this(null);
}
/**
* Initialize the builder with given object.
*
* @param object
* the given object
*/
public CTVerticalAlignRunBuilder(CTVerticalAlignRun object) {
super(object);
}
/**
* Copies values fom src
into target
. Values of target
will be overridden by the values from src
.
*
* @param src
* source object
* @param target
* target object
*/
public CTVerticalAlignRunBuilder(CTVerticalAlignRun src, CTVerticalAlignRun target) {
this(target);
if (src!= null) {
withVal(src.getVal());
}
}
protected CTVerticalAlignRun createObject() {
return WmlBuilderFactory.OBJECT_FACTORY.createCTVerticalAlignRun();
}
public CTVerticalAlignRunBuilder withVal(STVerticalAlignRun value) {
if (value!= null) {
object.setVal(value);
}
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy