package labwork5; /** * The Button class is an implementation of the InteractiveElement interface representing a button in a GUI. * It can send and receive updates through a Mediator. */ public class Button implements InteractiveElement{ private String id; private final Mediator mediator; /** * Constructs a Button with a specified ID and associated Mediator. * * @param id the unique identifier for the button * @param mediator the Mediator to communicate with */ public Button(String id, Mediator mediator) { this.id = id; this.mediator = mediator; } /** * Retrieves the ID of the button. * * @return the ID of the button */ public String getId() { return id; } /** * Sends an update message to the associated Mediator. * * @param updateMessage the update message to be sent */ @Override public void sendUpdate(String updateMessage) { mediator.update(this, updateMessage); } /** * Receives an update message from the Mediator and prints a message. * * @param updateMessage the received update message */ @Override public void receiveUpdate(String updateMessage) { System.out.printf("%s has has received an update with a message:\"%s\"\n", id, updateMessage); } }