Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Assume the existence of an interface, ActionListener, with the following method

ID: 3537817 • Letter: A

Question

Assume the existence of an interface, ActionListener, with the following method : - actionPerformed: void-returning, accepts no parameters

Define a class , GUIApplication, that implements the above interface and has the following members: - an instance variable , doc, of type Document - a constructor that accepts a Document parameter used to initialize the instance variable - an implementation of the actionPerformed method that invokes the method , save, with the document instance variable as the receiver and sends the message "document saved" to System.out

Explanation / Answer


public class GUIApplication implements ActionListener{

Document document;
public GUIApplication(Document docum)
{
document=docum;

}
public void actionPerformed() {
document.save();
System.out.println("document saved");
}}



Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote