com.alphasystem.docx4j.builder.wml.CTFFDataBuilder 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.CTFFData;
/**
* Fluent API builder for org.docx4j.wml.CTFFData
.
*
*/
public class CTFFDataBuilder
extends OpenXmlBuilder
{
/**
* Initialize the underlying object.
*
*/
public CTFFDataBuilder() {
this(null);
}
/**
* Initialize the builder with given object.
*
* @param object
* the given object
*/
public CTFFDataBuilder(CTFFData 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 CTFFDataBuilder(CTFFData src, CTFFData target) {
this(target);
if (src!= null) {
}
}
protected CTFFData createObject() {
return WmlBuilderFactory.OBJECT_FACTORY.createCTFFData();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy