com.github.mathieudebrito.translator.parsers.FileParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of file-translator Show documentation
Show all versions of file-translator Show documentation
Library that helps translating files
The newest version!
package com.github.mathieudebrito.translator.parsers;
import com.github.mathieudebrito.translator.Language;
import java.util.List;
import java.util.Map;
public interface FileParser {
Map readEntries(String path, List fileName, Language language);
String decode(String text);
String getFilename(String path, String fileName, Language language);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy