SoftwareEngineering/src/labwork5/Button.java

51 lines
1.3 KiB
Java
Raw Normal View History

2024-03-09 18:14:49 +02:00
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);
}
}