Use Netbeans to run the following decorator pattern code. Provide screenshot to prove that the code runs successfully. Design a UML class diagram to model the program and fully explain the class diagram.     import java.util.List;   public interface Spaceship   {    void name();    void size() throws Exception ;   }   class EbonHawk implements Spaceship   {    public void name()   {        System.out.println("EbonHawk Spaceship");    }    public void size()   {        System.out.println("Spaceship size");    }    public void loadPassangers(List passangers)   {         }    public void unloadPassangers(List passangers)   {         }    public int rangeFinder(int destination, int source)   {        return destination-source;    } }   class Enemy implements Spaceship   {    public void name()   {        System.out.println("Enemy Spaceship");    }    public void size()   {        System.out.println("Enemy size");    }    public boolean isLaserGunEnabled()   {        return true;    }    public boolean isHyperDriveEnabled() {        return true;    } }

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

Use Netbeans to run the following decorator pattern code. Provide screenshot to prove that the code runs successfully.

Design a UML class diagram to model the program and fully explain the class diagram.

 

 

import java.util.List;

 

public interface Spaceship

 

{

   void name();

   void size() throws Exception ;

 

}

 

class EbonHawk implements Spaceship

 

{

   public void name()

 

{

       System.out.println("EbonHawk Spaceship");

   }

   public void size()

 

{

       System.out.println("Spaceship size");

   }

   public void loadPassangers(List passangers)

 

{

    

   }

   public void unloadPassangers(List passangers)

 

{

    

   }

   public int rangeFinder(int destination, int source)

 

{

       return destination-source;

   }

}

 

class Enemy implements Spaceship

 

{

   public void name()

 

{

       System.out.println("Enemy Spaceship");

   }

   public void size()

 

{

       System.out.println("Enemy size");

   }

   public boolean isLaserGunEnabled()

 

{

       return true;

   }

   public boolean isHyperDriveEnabled() {

       return true;

   }

}

Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Adjacency Matrix
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