code to explanationWed, 28 Dec 2022

public class DvdCommandNameStarsOn extends CommandAbstract { private DvdName dvdName; public DvdCommandNameStarsOn(DvdName dvdNameIn) { this.dvdName = dvdNameIn; } public void execute() { this.dvdName.setNameStarsOn(); } }

Explanation that the above is a command object that implements the Command interface. The Command interface has only one method, execute().

Want to kickstart your project?Use the new AI Studio to create your code