From 4ffa66f5eb36ee25a09979d6a4ad387987f0362d Mon Sep 17 00:00:00 2001 From: josh Date: Fri, 27 Nov 2009 20:07:51 +0000 Subject: [PATCH] changed dash to elipses... git-svn-id: svn://anubis/gvsu@465 45c1a28c-8058-47b2-ae61-ca45b979098e --- cs623/proj1/RetirementCalculator.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cs623/proj1/RetirementCalculator.java b/cs623/proj1/RetirementCalculator.java index 1e0f588..0581fb3 100644 --- a/cs623/proj1/RetirementCalculator.java +++ b/cs623/proj1/RetirementCalculator.java @@ -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
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
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);