home *** CD-ROM | disk | FTP | other *** search
/ BUG 15 / BUGCD1998_06.ISO / aplic / jbuilder / jsamples.z / GuiRes_en_CA.java < prev    next >
Text File  |  1997-07-10  |  363b  |  15 lines

  1. package borland.samples.intl.gui.resources;
  2.  
  3. import java.util.*;
  4.  
  5. public class GuiRes_en_CA extends ListResourceBundle {
  6.   Object[][] contents = {
  7.      {"SoldToCustomerInfoPanel",new CustomerInfoPanel_en_CA()},
  8.      {"ShipToCustomerInfoPanel",new CustomerInfoPanel_en_CA()},
  9.   };
  10.      
  11.   public Object[][] getContents() {
  12.     return contents;
  13.   }
  14. }
  15.