Part 3. Create two Child Classes Create two Java classes, Desktop and Laptop that both are subclasses of Computer. a) A Desktop has additional instance variables: width and height (data encapsulation is expected) b) A Laptop has an additional instance variable, weight (data encapsulation is expected) c) Write constructors for both classes that require input for all their instance variables (including Model Number, Brand Name, Manufacturing Date and Number of cores) and also no-args constructors. d) Create getters and setters for all instance variables for both Child classes. e) Create toString() methods(overridden) in Desktop and Laptop classes Part 4. Test Two Child Classes Test your newly created classes inside the same TestComputer program you previously created: create two new Laptops and two new Desktop with the data of your choice. You can use and call toString() method to print their complete description.

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

Please add the code after this one. The code has to be in java eclipse. Please add comments in what you are doing. I'll appreciate it

public class Computer {
 private String ModelNumber;
 private String BrandName;
 private String manufacturingDate;
 private int NumberOfCores;

 //Constructor a 
public Computer() {
}

//Construct a computer object with model, BrandName, NumberOfCores
Computer (String ModelNumber, String BrandName, String manufacturingDate, int NumberOfCores){
    this.ModelNumber=ModelNumber;
    this.BrandName=BrandName;
    this.manufacturingDate=manufacturingDate;
    this.NumberOfCores=NumberOfCores;
}
//generate getters/setters
public String getModel() {
    return ModelNumber;
}

public void setModel(String ModelNumber) {
    ModelNumber = ModelNumber;
}

public String getBrandName() {
    return BrandName;
}

public void setBrandName(String brandName) {
    BrandName = brandName;
}

public String getManufacturingDate() {
    return manufacturingDate;
}

public void setManufacturingDate(String manufacturingDate) {
    this.manufacturingDate = manufacturingDate;
}

public int getNumberOfCores() {
    return NumberOfCores;
}

public void setNumberOfCores(int numberOfCores) {
    NumberOfCores = numberOfCores;
}
public String toString() {
    return "\nModelNumber: "+ ModelNumber + "BrandName: "+ BrandName +"Created on "+ manufacturingDate +
            "NumberOfCores: "+ NumberOfCores   ;
}
public String Output() {
    return "Output is from method present in ComputerObject's Class";
}
    }

Part 3. Create two Child Classes
Create two Java classes, Desktop and Laptop that both are subclasses of Computer.
a) A Desktop has additional instance variables: width and height (data encapsulation is expected)
b) A Laptop has an additional instance variable, weight (data encapsulation is expected)
c) Write constructors for both classes that require input for all their instance variables (including Model
Number, Brand Name, Manufacturing Date and Number of cores) and also no-args constructors.
d) Create getters and setters for all instance variables for both Child classes.
e) Create toString() methods(overridden) in Desktop and Laptop classes
Part 4. Test Two Child Classes
Test your newly created classes inside the same TestComputer program you previously created: create two new
Laptops and two new Desktop with the data of your choice. You can use and call toString() method to print their
complete description.
Hint: Make sure to avoid redundancy in your code - no fields implemented in the Parent Class should be
repeated/reimplemented/redefined in children
Transcribed Image Text:Part 3. Create two Child Classes Create two Java classes, Desktop and Laptop that both are subclasses of Computer. a) A Desktop has additional instance variables: width and height (data encapsulation is expected) b) A Laptop has an additional instance variable, weight (data encapsulation is expected) c) Write constructors for both classes that require input for all their instance variables (including Model Number, Brand Name, Manufacturing Date and Number of cores) and also no-args constructors. d) Create getters and setters for all instance variables for both Child classes. e) Create toString() methods(overridden) in Desktop and Laptop classes Part 4. Test Two Child Classes Test your newly created classes inside the same TestComputer program you previously created: create two new Laptops and two new Desktop with the data of your choice. You can use and call toString() method to print their complete description. Hint: Make sure to avoid redundancy in your code - no fields implemented in the Parent Class should be repeated/reimplemented/redefined in children
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY