The Java Program: MyResources_fr.java

  1 import java.util.ListResourceBundle;
  2 
  3 public class MyResources_fr extends ListResourceBundle {
  4    public Object[][] getContents() {
  5       return contents;
  6    }
  7 
  8    static final Object[][] contents = {
  9       {"color", "bleu"},
 10       {"animal", "chien"},
 11       {"pattern", 
 12        "A {1,time} le {1,date,full}, un {3} {2} " +
 13        "a mangé sur la Planète {0,number,integer}."}
 14    };
 15 }