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

org.kefirsf.bb.conf.Template Maven / Gradle / Ivy

Go to download

KefirBB is a Java-library for text processing. Initially it was developed for BB2HTML translation. But flexible configuration allows to use it in different cases. For example for parsing Markdown, Textile, and for HTML filtration.

The newest version!
package org.kefirsf.bb.conf;

import java.util.List;

/**
 * Template definition
 *
 * @author Vitaliy Samolovskih aka Kefir
 */
public class Template extends ElementListOwner {
    /**
     * Create template with empty content
     */
    public Template() {
        super();
    }

    /**
     * Create template with elements
     *
     * @param elements template definition elements
     */
    public Template(List elements) {
        super(elements);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy