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