36 lines
1.4 KiB
Java
36 lines
1.4 KiB
Java
package de.marhali.easyi18n.io;
|
|
|
|
import com.intellij.openapi.project.Project;
|
|
|
|
import de.marhali.easyi18n.model.Translations;
|
|
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
import java.util.function.Consumer;
|
|
|
|
/**
|
|
* Interface to retrieve and save localized messages.
|
|
* Can be implemented by various standards. Such as JSON, Properties-Bundle and so on.
|
|
* @author marhali
|
|
*/
|
|
@Deprecated
|
|
public interface TranslatorIO {
|
|
|
|
/**
|
|
* Reads localized messages from the persistence layer.
|
|
* @param project Opened intellij project
|
|
* @param directoryPath The full path for the directory which holds all locale files
|
|
* @param callback Contains loaded translations. Will be called after io operation. Content might be null on failure.
|
|
*/
|
|
void read(@NotNull Project project, @NotNull String directoryPath, @NotNull Consumer<Translations> callback);
|
|
|
|
/**
|
|
* Writes the provided messages (translations) to the persistence layer.
|
|
* @param project Opened intellij project
|
|
* @param translations Translations instance to save
|
|
* @param directoryPath The full path for the directory which holds all locale files
|
|
* @param callback Will be called after io operation. Can be used to determine if action was successful(true) or not
|
|
*/
|
|
void save(@NotNull Project project, @NotNull Translations translations,
|
|
@NotNull String directoryPath, @NotNull Consumer<Boolean> callback);
|
|
} |