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

com.greenpepper.dialect.SpecificationDialect Maven / Gradle / Ivy

The newest version!
package com.greenpepper.dialect;

import java.io.InputStream;

/**
 * Define a way to convert an input to the HTML output that will be fed to Greenpepper.
 */
public interface SpecificationDialect {

    /**
     * Converts the content of an input to the HTML output that will be fed to GreenPepper Core
     * @param input The input content to convert.
     * @return The HTML output.
     */
    String convert(InputStream input) throws SpecificationDialectException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy