19 lines
463 B
Java
19 lines
463 B
Java
package de.marhali.easyi18n.model;
|
|
|
|
import java.util.HashMap;
|
|
|
|
/**
|
|
* Represents all translations for an element. The assignment to an element is done in the using class.
|
|
* This class contains only the translations for this unspecific element.
|
|
* @author marhali
|
|
*/
|
|
public class Translation extends HashMap<String, String> {
|
|
public Translation() {
|
|
super();
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return super.toString();
|
|
}
|
|
} |