This commit is contained in:
Ali Can Zeybek
2025-01-09 22:16:38 +03:00
parent ef0043ada8
commit d854e0703e
7 changed files with 184 additions and 71 deletions

View File

@@ -1,5 +1,10 @@
public class Display {
private String message;
public String getMesssage() {
return message;
}
public Display() {
// TODO - implement Display.Display
throw new UnsupportedOperationException();
@@ -10,8 +15,7 @@ public class Display {
* @param message
*/
public void display(String message) {
// TODO - implement Display.display
throw new UnsupportedOperationException();
this.message = message;
}
/**