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

org.daisy.pipeline.tts.AbstractTTSService Maven / Gradle / Ivy

Go to download

Common API for TTS functionality and utility Java functions and XProc steps

There is a newer version: 7.3.0
Show newest version
package org.daisy.pipeline.tts;

import java.net.URL;

import org.osgi.service.component.ComponentContext;

public abstract class AbstractTTSService implements TTSService {

	@Override
	public String getVersion() {
		return "";
	}

	protected void loadSSMLadapter(ComponentContext context) {
		mXSLTresource = context.getBundleContext().getBundle().getEntry("/transform-ssml.xsl");
	}

	@Override
	public URL getSSMLxslTransformerURL() {
		return mXSLTresource;
	}

	protected URL mXSLTresource;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy