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 / ConnBundle.java < prev    next >
Encoding:
Java Source  |  1998-03-18  |  1.6 KB  |  40 lines

  1. package symantec.itools.db.resources;
  2.  
  3. import java.util.ListResourceBundle;
  4.  
  5. public class ConnBundle extends ListResourceBundle {
  6.    public Object[][] getContents() {
  7.        return contents;
  8.    }
  9.    static final Object[][] contents = {
  10.        // StateCheckBpxBeanInfo
  11.        {"TWO_STATE", "Style: TWO_STATE"},
  12.        {"THREE_STATE", "Style: THREE_STATE"},
  13.        {"STATE_UNCHECKED", "STATE_UNCHECKED"},
  14.        {"STATE_CHECKED", "STATE_CHECKED"},
  15.        {"STATE_DEFAULT", "STATE_DEFAULT"},
  16.        {"setStyle", "Set the checkbox style"},
  17.        {"getStyle", "Get the checkbox style"},
  18.        {"setStateValue", "Set the checkbox state"},
  19.        {"setStateUnCheck", "Clear the checkbox"},
  20.        {"setStateCheck", "Check the checkbox"},
  21.        {"getState", "Get the checkbox state"},
  22.        {"IscheckboxOn", "Is checkbox On?"},
  23.        {"IscheckboxOff", "Is checkbox Off?"},
  24.        // End StateCheckBpxBeanInfo
  25.  
  26.        // DBstampBeanInfo
  27.        {"actionPerformed", "Invoke actionPerformed event"},
  28.        {"printTstamp", "Update the text using the current day/time and display format"},
  29.        {"setDisplayFormat", "Set display format"},
  30.        {"getDisplayFormat", "Get display format"},
  31.        {"setEntryFormat", "Set entry format"},
  32.        {"getEntryFormat", "Get entry format"},
  33.        {"setTstampString", "Set value to the given date (String)"},
  34.        {"setTstampDate", "Set value to the given date (Date)"},
  35.        {"setinequalout", "Set the text entry format to the same as the display format"},
  36.        {"getDate", "Get current value as a Date"},
  37.        // End DBstampBeanInfo
  38.    };
  39.  }
  40.