org.daisy.pipeline.tts.impl.DefaultLexiconProperty_SPI 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
/***************************************************************/
/* This class was generated by ds-to-spi-annotations-processor */
/***************************************************************/
package org.daisy.pipeline.tts.impl;
public class DefaultLexiconProperty_SPI
implements org.daisy.common.spi.ServiceWithProperties
, org.daisy.common.spi.CreateOnStart {
private static final org.slf4j.Logger spi_log = org.slf4j.LoggerFactory.getLogger(DefaultLexiconProperty_SPI.class);
private final java.util.Map spi_props;
private boolean spi_deactivated = false;
private final org.daisy.pipeline.tts.impl.DefaultLexiconProperty delegate;
public DefaultLexiconProperty_SPI() {
delegate = new org.daisy.pipeline.tts.impl.DefaultLexiconProperty();
spi_log.trace("Creating DefaultLexiconProperty");
spi_props = new java.util.HashMap();
spi_props.put("component.name", "default-lexicon-property");
}
public void spi_deactivate() {
}
public java.util.Map spi_getProperties() {
return spi_props;
}
@Override
public String toString() {
return delegate.toString();
}
@Override
public int hashCode() {
return delegate.hashCode();
}
@Override
public boolean equals(Object o) {
return delegate.equals(o);
}
}