Create an abstract class called ITWorker and declare the following… Create an abstract class called ITWorker and declare the following pri
Create an abstract class called ITWorker and declare the following… Create an abstract class called ITWorker and declare the following private attributes within it: aptitude (integer) morale (float) name (String)Write ‘getter’ and ‘setter’ methods for each attribute.Write an alternate 3-argument constructor that initializes the attributes accordingly.Override the equals() method. The method should compare ITWorkers based on the morale and name attributes.Override the toString method; the method should return the string “My name is name” where name is the contents of the name attribute.Create an abstract method called hasSkill that accepts a String argument, and returns a boolean. Computer Science Engineering & Technology Java Programming CSCI 130 Share QuestionEmailCopy link


