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

com.alphasystem.docbook.builder.impl.block.TableFooterBuilder Maven / Gradle / Ivy

The newest version!
package com.alphasystem.docbook.builder.impl.block;

import com.alphasystem.docbook.builder.Builder;
import org.docbook.model.TableFooter;

import java.util.List;

public class TableFooterBuilder extends TableContentBuilder {

    public TableFooterBuilder(TableFooter source, Builder parent) {
        super(source, parent);
    }

    @Override
    protected List getChildContent() {
        return sanitizeRows(source.getRow());
    }
}