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

de.firemage.autograder.core.LocalizedMessage Maven / Gradle / Ivy

There is a newer version: 0.6.1
Show newest version
package de.firemage.autograder.core;

import de.firemage.autograder.api.Translatable;
import fluent.bundle.FluentBundle;

import java.util.Map;

public record LocalizedMessage(String key, Map parameters) implements Translatable {
    public LocalizedMessage(String key) {
        this(key, Map.of());
    }

    @Override
    public String format(FluentBundle bundle) {
        return bundle.format(this.key, this.parameters);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy