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

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

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

import com.alphasystem.docbook.builder.Builder;

import java.util.Collections;
import java.util.List;

public abstract class NullBuilder extends AbstractParaBuilder {

    protected NullBuilder(S source, Builder parent) {
        super(null, source, parent);
    }

    @Override
    public List process() {
        return Collections.emptyList();
    }
}