org.daisy.pipeline.tts.SSMLTransformer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tts-common Show documentation
Show all versions of tts-common Show documentation
Common API for TTS functionality
package org.daisy.pipeline.tts;
import net.sf.saxon.s9api.XdmNode;
/**
* Transform the SSML according to the TTS engine's features and bugs
*/
public interface SSMLTransformer {
public XdmNode transform(XdmNode ssml);
}