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

de.sstoehr.pustefix.i18n.output.AbstractWriter Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package de.sstoehr.pustefix.i18n.output;

import java.io.File;
import java.util.LinkedHashMap;
import java.util.Map;

import de.sstoehr.pustefix.i18n.model.Locale;

public abstract class AbstractWriter implements Writer {

    protected Map locales = new LinkedHashMap<>();

    @Override
    public void addLocale(Locale locale, File file) {
        locales.put(locale, file);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy