diff --git a/src/main/java/envoy/client/ui/ChatWindow.java b/src/main/java/envoy/client/ui/ChatWindow.java index 4aae96a..dc68e10 100644 --- a/src/main/java/envoy/client/ui/ChatWindow.java +++ b/src/main/java/envoy/client/ui/ChatWindow.java @@ -331,6 +331,7 @@ public class ChatWindow extends JFrame { * online, the sync thread is started. * * @param client the {@link Client} used to send and receive messages + * @since Envoy v0.2-alpha */ public void setClient(Client client) { this.client = client; @@ -342,6 +343,7 @@ public class ChatWindow extends JFrame { * method, users and chats will be loaded from the database into the GUI. * * @param localDB the {@link LocalDB} used to manage stored messages and users + * @since Envoy v0.2-alpha */ public void setLocalDB(LocalDB localDB) { this.localDB = localDB; diff --git a/src/main/java/envoy/client/ui/Startup.java b/src/main/java/envoy/client/ui/Startup.java index d4d4a78..ca68618 100644 --- a/src/main/java/envoy/client/ui/Startup.java +++ b/src/main/java/envoy/client/ui/Startup.java @@ -16,7 +16,7 @@ import envoy.exception.EnvoyException; import envoy.schema.User; /** - * Starts the Envoy client and prompts the user to enter their name. + * Starts the Envoy client and prompts the user to enter their name.
*
* Project: envoy-client
* File: Startup.java