home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-03-18 | 1.6 KB | 40 lines |
- package symantec.itools.db.resources;
-
- import java.util.ListResourceBundle;
-
- public class ConnBundle extends ListResourceBundle {
- public Object[][] getContents() {
- return contents;
- }
- static final Object[][] contents = {
- // StateCheckBpxBeanInfo
- {"TWO_STATE", "Style: TWO_STATE"},
- {"THREE_STATE", "Style: THREE_STATE"},
- {"STATE_UNCHECKED", "STATE_UNCHECKED"},
- {"STATE_CHECKED", "STATE_CHECKED"},
- {"STATE_DEFAULT", "STATE_DEFAULT"},
- {"setStyle", "Set the checkbox style"},
- {"getStyle", "Get the checkbox style"},
- {"setStateValue", "Set the checkbox state"},
- {"setStateUnCheck", "Clear the checkbox"},
- {"setStateCheck", "Check the checkbox"},
- {"getState", "Get the checkbox state"},
- {"IscheckboxOn", "Is checkbox On?"},
- {"IscheckboxOff", "Is checkbox Off?"},
- // End StateCheckBpxBeanInfo
-
- // DBstampBeanInfo
- {"actionPerformed", "Invoke actionPerformed event"},
- {"printTstamp", "Update the text using the current day/time and display format"},
- {"setDisplayFormat", "Set display format"},
- {"getDisplayFormat", "Get display format"},
- {"setEntryFormat", "Set entry format"},
- {"getEntryFormat", "Get entry format"},
- {"setTstampString", "Set value to the given date (String)"},
- {"setTstampDate", "Set value to the given date (Date)"},
- {"setinequalout", "Set the text entry format to the same as the display format"},
- {"getDate", "Get current value as a Date"},
- // End DBstampBeanInfo
- };
- }
-