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

com.hn.translation.factory.TranslatorFactory Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
package com.hn.translation.factory;

import com.hn.translation.Translator;
import com.hn.translation.exception.TranslationException;

import java.net.URISyntaxException;

public final class TranslatorFactory
        extends AbstractTranslatorFactory {
    public TranslatorFactory()
            throws ClassNotFoundException, InstantiationException, IllegalAccessException, TranslationException, URISyntaxException {
    }

    public Translator get(String id) {
        return this.translatorMap.get(id);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy