...
Code Block | ||
---|---|---|
| ||
package com.greenpepper.dialect; /** * 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(StringInputStream input) throws SpecificationDialectException; } |
...