please modify this: display method must call displayNormal

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter11: Advanced Inheritance Concepts
Section: Chapter Questions
Problem 14RQ
icon
Related questions
Question

please modify this: display method must call displayNormal

 

Window class

abstract class Window implements GUIComponent {
private int height, width;
private boolean isThisVisible, minimized;

public Window(int width, int height){
this.height = height;
this.width = width;
}

public int getHeight() {
return height; }

public int getWidth() {
return width; }



public String toString() {
return "a " + width + "x" + height + " minimal window"; }

public void resize(int width, int height){
this.width = width;
this.height = height;
}

public void display() {
if (!isThisVisible) {
System.out.println("(Nothing to see here)");
}
else if (!minimized) {
System.out.println(".......................\n:" + toString() + ":\n.......................");
}

else {
System.out.println("[" + this.toString() + " (minimized)]");
}

}
public void minimize(){
minimized = true;
}


public void setVisible(boolean isThisVisible) {
this.isThisVisible = isThisVisible; }

public void restore(){
minimized=false;
}

public boolean isVisible() {
return isThisVisible;
}

abstract void displayNormal();


}

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Unreferenced Objects
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