we are going to create a new subclass of the SimpleGeometricObject class, named Triangle. Copy the source code of the SimpleGeometricObject class from the following link:   https://liveexample.pearsoncmg.com/html/SimpleGeometricObject.html   TASK 1: Create a Triangle class that extends the SimpleGeometricObject class in Eclipse, following the below UML diagram. Use the following formula to calculate the area of a triangle: A = 1/2 × base × height   TASK 2: Create a TestTriangle class in an individual .java file. In the main method, (1) Create a Triangle object with default base and height values. (2) Create a Triangle object with specified base = 3 and height =4.   TASK 3: Add a toString() method to the Triangle class. In this toString() method, (1) Print the base, height, and area of a Triangle object. (2) Call the toString() method of the superclass using the super key word. Then, in the main method of the TestTriangle class, make the two Triangle objects that you created in Task 2 call the toString() method of the Triangle class. Ensure it runs without errors. show your console output.   TASK 4: Let’s test the method overriding. 1. Add a void testOverriding() method to the SimpleGeometricObject class. Make it print “This is the testOverriding() method of the SimpleGeometricObject class”. 2. In the main method of the TestTriangle class, make the two Triangle objects that you created in Task 2 call the testOverriding () method. Ensure it runs without errors. show your console output. 3. Override the testOverriding() method in the Triangle class. Make it print “This is the overridden testOverriding() method”. 4. In the main method of the TestTriangle class, make the two Triangle objects that you created in Task 2 call the testOverriding () method. Ensure it runs without errors.

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter11: Advanced Inheritance Concepts
Section: Chapter Questions
Problem 5PE
icon
Related questions
Question
we are going to create a new subclass of the SimpleGeometricObject class, named
Triangle. Copy the source code of the SimpleGeometricObject class from the following link:
 
https://liveexample.pearsoncmg.com/html/SimpleGeometricObject.html
 
TASK 1: Create a Triangle class that extends the SimpleGeometricObject class in Eclipse, following
the below UML diagram.
Use the following formula to calculate the area of a triangle:
A = 1/2 × base × height
 
TASK 2: Create a TestTriangle class in an individual .java file. In the main method,
(1) Create a Triangle object with default base and height values.
(2) Create a Triangle object with specified base = 3 and height =4.
 
TASK 3: Add a toString() method to the Triangle class. In this toString() method,
(1) Print the base, height, and area of a Triangle object.
(2) Call the toString() method of the superclass using the super key word.
Then, in the main method of the TestTriangle class, make the two Triangle objects that you
created in Task 2 call the toString() method of the Triangle class. Ensure it runs without errors.
show your console output.
 
TASK 4: Let’s test the method overriding.
1. Add a void testOverriding() method to the SimpleGeometricObject class. Make it print
“This is the testOverriding() method of the SimpleGeometricObject class”.
2. In the main method of the TestTriangle class, make the two Triangle objects that you
created in Task 2 call the testOverriding () method.
Ensure it runs without errors. show your console output.
3. Override the testOverriding() method in the Triangle class. Make it print “This is the
overridden testOverriding() method”.
4. In the main method of the TestTriangle class, make the two Triangle objects that you
created in Task 2 call the testOverriding () method.
Ensure it runs without errors.
←
Lab 5: Inheritance X
→ C
Introduction to Ja X
Show Code With Line Numbers
public class SimpleGeometricObject {
private String color = "white";
private boolean filled;
private java.util.Date' dateCreated;
/** Construct a default geometric object */
public SimpleGeometricObject() {
dateCreated new java.util.Date();
/** Construct a geometric object with the specified color
and filled value */
public SimpleGeometricObject(String color, boolean filled) {
liveexample.pearsoncmg.com/html/SimpleGeometricObject.html
dateCreated = new java.util.Date();
this.color= color;
this filled filled;
}
/** Return color */
public String getColor() {
return color;
}
/** Set a new color */
public void setColor (String color) {
this.color= color;
}
/** Return filled. Since filled is boolean,
its get method is named isFilled */
public boolean isFilled() {
return filled;
}
}
/** Set a new filled /
public void setFilled (boolean filled) {
this filled filled;
}
/** Get dateCreated */
public java.util.Date getDateCreated() {
return dateCreated;
}
/** Return a string representation of this object */
public String toString() {
+
return "created on dateCreated + "\ncolor: "+color+
and filled: " + filled;
34°F
Cloudy
Unit 7 AS1: Assig X
▬▬
■
Files
Q Search
X
Bb Blackboard Learn X
a
Bb 4970112
x b Success Confirma x +
X
31
Pa
4x
0
7:10 PM
3/22/2023
X
:
Transcribed Image Text:← Lab 5: Inheritance X → C Introduction to Ja X Show Code With Line Numbers public class SimpleGeometricObject { private String color = "white"; private boolean filled; private java.util.Date' dateCreated; /** Construct a default geometric object */ public SimpleGeometricObject() { dateCreated new java.util.Date(); /** Construct a geometric object with the specified color and filled value */ public SimpleGeometricObject(String color, boolean filled) { liveexample.pearsoncmg.com/html/SimpleGeometricObject.html dateCreated = new java.util.Date(); this.color= color; this filled filled; } /** Return color */ public String getColor() { return color; } /** Set a new color */ public void setColor (String color) { this.color= color; } /** Return filled. Since filled is boolean, its get method is named isFilled */ public boolean isFilled() { return filled; } } /** Set a new filled / public void setFilled (boolean filled) { this filled filled; } /** Get dateCreated */ public java.util.Date getDateCreated() { return dateCreated; } /** Return a string representation of this object */ public String toString() { + return "created on dateCreated + "\ncolor: "+color+ and filled: " + filled; 34°F Cloudy Unit 7 AS1: Assig X ▬▬ ■ Files Q Search X Bb Blackboard Learn X a Bb 4970112 x b Success Confirma x + X 31 Pa 4x 0 7:10 PM 3/22/2023 X :
+ base:double = 5
+ height:double = 10
Page
Triangle
TASK 1: Create a Triangle class that extends the SimpleGeometricObject class in Eclipse, following
the below UML diagram.
1
+ Triangle()
+ Triangle(newBase: double, newHeight: double)
+ getArea(): double
+ setBase(): void
+ setHeight(): void
+ getBase(): double
+ getHeight(): double
of 3
ZOOM
+
Transcribed Image Text:+ base:double = 5 + height:double = 10 Page Triangle TASK 1: Create a Triangle class that extends the SimpleGeometricObject class in Eclipse, following the below UML diagram. 1 + Triangle() + Triangle(newBase: double, newHeight: double) + getArea(): double + setBase(): void + setHeight(): void + getBase(): double + getHeight(): double of 3 ZOOM +
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Running Time of Application
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage