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,
new JLabel("What is your expected annual income after retirement -"));
new JLabel("What is your expected annual income after retirement..."));
field = new JTextField();
field.addFocusListener(this);
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.");
addDollarRow(inner,
new JLabel(" - from an employer pension plan?",
new JLabel("... from an employer pension plan?",
SwingConstants.RIGHT),
field);
@ -163,14 +163,14 @@ class RetirementCalculatorPanel
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.");
addDollarRow(inner,
new JLabel(" - from a part-time job?", SwingConstants.RIGHT),
new JLabel("... from a part-time job?", SwingConstants.RIGHT),
field);
field = new JTextField();
field.addFocusListener(this);
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.");
addDollarRow(inner, new JLabel(" - other?", SwingConstants.RIGHT), field);
addDollarRow(inner, new JLabel("... other?", SwingConstants.RIGHT), field);
addRow(inner, makeDivider());
@ -232,7 +232,7 @@ class RetirementCalculatorPanel
ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
add(scrollpane);
myResultBox = new JLabel(" ", SwingConstants.CENTER);
myResultBox = new JLabel("", SwingConstants.CENTER);
myResultBox.setForeground(new Color(0, 0, 200));
add(myResultBox, BorderLayout.SOUTH);