home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1999 February / CDW0299.iso / Demos / Cafe / Source.bin / ResBundle.java < prev    next >
Encoding:
Java Source  |  1998-03-18  |  443 b   |  18 lines

  1. package symantec.itools.resources;
  2.  
  3. import java.util.ListResourceBundle;
  4.  
  5. public class ResBundle extends ListResourceBundle {
  6.    public Object[][] getContents() {
  7.        return contents;
  8.    }
  9.    static final Object[][] contents = {
  10.        // ScrollingTextBeanInfo
  11.        {"put", "put"},
  12.        {"some", "some"},
  13.        {"text", "text"},
  14.        {"in", "in"},
  15.        {"here", "here"},
  16.        // End ScrollingTextBeanInfo
  17.    };
  18. }