Adds missing comments, simplifies proxy distinction, moves updating to own class and fixes formatting

This commit is contained in:
2020-08-11 19:29:28 +02:00
parent 094a1facb2
commit ab6453cdc3
30 changed files with 845 additions and 593 deletions

View File

@ -15,7 +15,7 @@ public interface GUI {
/**
* Displays an error to the user as an independent box
*
* @param title <p>The title of the error message</p>
* @param title <p>The title of the error message</p>
* @param message <p>The error message contents</p>
*/
void showError(String title, String message);
@ -30,7 +30,7 @@ public interface GUI {
/**
* Displays a message to the user as an independent box
*
* @param title <p>The title of the message</p>
* @param title <p>The title of the message</p>
* @param message <p>The message contents</p>
*/
void showMessage(String title, String message);