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

org.blockwiseph.cftemplate.generator.sectionbuilder.DelegateCFSectionBuilder Maven / Gradle / Ivy

package org.blockwiseph.cftemplate.generator.sectionbuilder;

public abstract class DelegateCFSectionBuilder implements CFSectionBuilder {

    @Override
    public final String getSectionContents() {
        return delegate().getSectionContents();
    }

    protected abstract CFSectionBuilder delegate();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy