akosiraff

Download EmployeeBonus JAVA Answer

Aug 27th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1.  
  2. Download: https://solutionzip.com/downloads/employeebonus/
  3. Employees at a certain company get a yearly bonus based on years of service. The bonus is a percentage of their annual salary based on the table below.
  4. Years of Service Bonus Percentage
  5. < 5 3% 5 – 14 7% 15+ 12% Create a class called Employee that can be used for this. It should have attributes of • Name; • Years; and • Salary. Create the following methods. • Default constructor to initialize all attributes • Get/Set for name, years, salary • Get to calculate and return bonus rate • Get to calculate and return bonus amount This class will be used with the Bonus Calculator GUI shown below. With the following named components: Component Type Purpose txtName JTextField Input for name txtYears JTextField Input for years txtSalary JTextField Input for salary btnCalc JButton Click to calculate bonus txtBonusPercent JTextField Displays bonus percentage txtBonusAmount JTextField Displays bonus amount You DO NOT have to code the GUI. The action listener for btnCalc is set up as follows. btnCalc.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { calcBonus(); //write the code for this method } });
  6. Download: https://solutionzip.com/downloads/employeebonus/
Add Comment
Please, Sign In to add comment