home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VCafe / prosrc.bin / ResBundle.java < prev    next >
Encoding:
Java Source  |  1998-03-18  |  768 b   |  29 lines

  1. package symantec.itools.db.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.        // TableView
  11.        {"Append", "Append"},
  12.        {"Delete", "Delete"},
  13.        {"Insert", "Insert"},
  14.        {"Goto", "Goto >>>"},
  15.        {"Save", "Save"},
  16.        {"Restart", "Restart"},
  17.        {"Undo", "Undo"},
  18.        {"Undelete", "Undelete"},
  19.        // End TableView
  20.  
  21.        // LogonDialog
  22.        {"Cancel", "Cancel"},
  23.        {"UserName", "User Name:"},
  24.        {"Password", "Password:"},
  25.        {"DataSourceName", "DataSource Name:"},
  26.        {"Title", "Untitled"},
  27.        // End LogonDialog
  28.    };
  29. }