1 import java.util.ListResourceBundle; 2 3 public class MyResources_de extends ListResourceBundle { 4 public Object[][] getContents() { 5 return contents; 6 } 7 8 static final Object[][] contents = { 9 {"color", "blauer"}, 10 {"animal", "Hund"}, 11 {"pattern", 12 "Um {1,time} an {1,date,full}, aß ein {2} {3} " + 13 "auf Planeten {0,number,integer}."} 14 }; 15 }