Lines Matching refs:getString
62 private static String[] units = { getString("Seconds"),
63 getString("Minutes"),
64 getString("Hours"),
65 getString("Days"),
66 getString("Weeks"),
67 getString("Months"),
68 getString("Years") };
81 super(parent, getString("SEAM Duration Helper"), true); in DurationHelper()
100 add(new Label(getString("Unit")), gbc); in addLabels()
101 add(new Label(getString("Value")), gbc); in addLabels()
105 add(new Label(getString("Seconds")), gbc); in addLabels()
115 unit.select(getString("Hours")); in initUnits()
171 ok = new Button(getString("OK")); in addButtons()
172 cancel = new Button(getString("Cancel")); in addButtons()
173 help = new Button(getString("Help")); in addButtons()
193 compute = new Button(getString("=")); in addButtons()
288 getString("Help for entering time duration"), in actionPerformed()
291 hd.setText(getString(hrb, "DurationHelperHelp")); in actionPerformed()
305 private static final String getString(String key) { in getString() method in DurationHelper
306 return (getString(rb, key)); in getString()
309 private static final String getString(ResourceBundle rb, String key) { in getString() method in DurationHelper
311 String res = rb.getString(key); in getString()