1 import java.util.ListResourceBundle; 2 3 /* 4 See "java.text.SimpleDateFormat" for time and date patterns 5 */ 6 7 public class MyResources extends ListResourceBundle { 8 public Object[][] getContents() { 9 return contents; 10 } 11 12 static final Object[][] contents = { 13 {"color", "blue"}, 14 {"animal", "dog"}, 15 {"pattern", 16 "At {1,time} on {1,date,EEEE, d MMMM yyyy}, a {2} {3} " + 17 "ate on Planet {0,number,00}."} 18 }; 19 }