changed dash to elipses...

git-svn-id: svn://anubis/gvsu@465 45c1a28c-8058-47b2-ae61-ca45b979098e
This commit is contained in:
josh 2009-11-27 20:07:51 +00:00
parent 0840b237fd
commit 4ffa66f5eb

View File

@ -147,14 +147,14 @@ class RetirementCalculatorPanel
addRow(inner, makeDivider()); addRow(inner, makeDivider());
addRow(inner, addRow(inner,
new JLabel("What is your expected annual income after retirement -")); new JLabel("What is your expected annual income after retirement..."));
field = new JTextField(); field = new JTextField();
field.addFocusListener(this); field.addFocusListener(this);
myFields.put("employer pension", field); myFields.put("employer pension", field);
myToolTips.put(field, "If your employer has a pension plan that will pay you a certain amount<br/>after you retire from them, then enter that amount here."); myToolTips.put(field, "If your employer has a pension plan that will pay you a certain amount<br/>after you retire from them, then enter that amount here.");
addDollarRow(inner, addDollarRow(inner,
new JLabel(" - from an employer pension plan?", new JLabel("... from an employer pension plan?",
SwingConstants.RIGHT), SwingConstants.RIGHT),
field); field);
@ -163,14 +163,14 @@ class RetirementCalculatorPanel
myFields.put("part time income", field); myFields.put("part time income", field);
myToolTips.put(field, "Enter how much income you expect to make working at a part-time job after retirement."); myToolTips.put(field, "Enter how much income you expect to make working at a part-time job after retirement.");
addDollarRow(inner, addDollarRow(inner,
new JLabel(" - from a part-time job?", SwingConstants.RIGHT), new JLabel("... from a part-time job?", SwingConstants.RIGHT),
field); field);
field = new JTextField(); field = new JTextField();
field.addFocusListener(this); field.addFocusListener(this);
myFields.put("other income", field); myFields.put("other income", field);
myToolTips.put(field, "If there is any other annual income you expect to receive after retirement<br/>not already accounted for, enter the amount here."); myToolTips.put(field, "If there is any other annual income you expect to receive after retirement<br/>not already accounted for, enter the amount here.");
addDollarRow(inner, new JLabel(" - other?", SwingConstants.RIGHT), field); addDollarRow(inner, new JLabel("... other?", SwingConstants.RIGHT), field);
addRow(inner, makeDivider()); addRow(inner, makeDivider());