The Java Program: SampleResourceBundle.java

  1 import java.awt.*;
  2 import java.util.*;
  3 
  4 public class SampleResourceBundle extends ListResourceBundle {
  5 
  6   public Object [][] getContents() {
  7     return contents;
  8   }
  9 
 10   static final Object [][] contents = {
 11       {"okButton", new Button("OK")},
 12       {"negativeInteger", new Integer(-1)},
 13       {"textString", "Thank you for reading our book"}
 14   };
 15 }