remove legacy structure

This commit is contained in:
marhali 2022-04-11 19:15:18 +02:00
parent aef851d462
commit 4333e2a996
2 changed files with 0 additions and 98 deletions

View File

@ -1,44 +0,0 @@
package de.marhali.easyi18n.model;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* I18n translation with associated key path (full-key).
* @author marhali
*/
@Deprecated // Replaced by Translation
public class KeyedTranslation {
private @NotNull KeyPath key;
private @Nullable Translation translation;
public KeyedTranslation(@NotNull KeyPath key, @Nullable Translation translation) {
this.key = key;
this.translation = translation;
}
public KeyPath getKey() {
return key;
}
public void setKey(KeyPath key) {
this.key = key;
}
public @Nullable Translation getTranslation() {
return translation;
}
public void setTranslation(@NotNull Translation translation) {
this.translation = translation;
}
@Override
public String toString() {
return "KeyedTranslation{" +
"key='" + key + '\'' +
", translation=" + translation +
'}';
}
}

View File

@ -1,54 +0,0 @@
package de.marhali.easyi18n;
import de.marhali.easyi18n.model.KeyPath;
import de.marhali.easyi18n.model.KeyPathConverter;
import org.junit.Assert;
import org.junit.Test;
/**
* Unit tests for {@link KeyPathConverter}.
* @author marhali
*/
@Deprecated
public class LegacyKeyPathConverterTest {
private final KeyPathConverter deepMapper = new KeyPathConverter(true);
private final KeyPathConverter flatMapper = new KeyPathConverter(false);
@Test
public void testNestedConcat() {
Assert.assertEquals("first\\\\.section.second.third",
deepMapper.concat(KeyPath.of("first.section", "second", "third")));
Assert.assertEquals("first.second.third",
deepMapper.concat(KeyPath.of("first", "second", "third")));
}
@Test
public void testNestedSplit() {
Assert.assertEquals(KeyPath.of("first.section", "second", "third"),
deepMapper.split("first\\\\.section.second.third"));
Assert.assertEquals(KeyPath.of("first", "second", "third"),
deepMapper.split("first.second.third"));
}
@Test
public void testNonNestedConcat() {
Assert.assertEquals("flat.map\\\\.deeper",
flatMapper.concat(KeyPath.of("flat.map", "deeper")));
Assert.assertEquals("flat.map.keys",
flatMapper.concat(KeyPath.of("flat.map.keys")));
}
@Test
public void testNonNestedSplit() {
Assert.assertEquals(KeyPath.of("flat.keys.with", "deep.section"),
flatMapper.split("flat.keys.with\\\\.deep.section"));
Assert.assertEquals(KeyPath.of("flat.keys.only"),
flatMapper.split("flat.keys.only"));
}
}