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

  1. package borland.samples.intl.beans.resources;
  2.  
  3. import java.util.*;
  4.  
  5. public class InternationalClockRes extends ListResourceBundle {
  6.   static final Object[][] contents = {
  7.     // inspector property name short descriptions
  8.     {"displayDate","Display date"},
  9.     {"displayTime","Display time"},
  10.     {"dateStyle","Date display style"},
  11.     {"timeStyle","Time display style"},
  12.   };
  13.  
  14.   public Object[][] getContents() {
  15.     return contents;
  16.   }
  17. }
  18.