Cleaned up Envoy client: no more <br><br>, is now <p>
...and some other funny mistakes found in Javadoc
This commit is contained in:
parent
90df627831
commit
3e4e7a1a40
@ -12,9 +12,9 @@ import envoy.data.Message.MessageStatus;
|
|||||||
import envoy.event.MessageStatusChange;
|
import envoy.event.MessageStatusChange;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents a chat between two {@link User}s <br>
|
* Represents a chat between two {@link User}s
|
||||||
* as a list of {@link Message} objects.
|
* as a list of {@link Message} objects.
|
||||||
* <br>
|
* <p>
|
||||||
* Project: <strong>envoy-client</strong><br>
|
* Project: <strong>envoy-client</strong><br>
|
||||||
* File: <strong>Chat.java</strong><br>
|
* File: <strong>Chat.java</strong><br>
|
||||||
* Created: <strong>19 Oct 2019</strong><br>
|
* Created: <strong>19 Oct 2019</strong><br>
|
||||||
@ -32,7 +32,7 @@ public final class Chat implements Serializable {
|
|||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Provides the list of messages that the recipient receives.<br>
|
* Provides the list of messages that the recipient receives.<p>
|
||||||
* Saves the Messages in the corresponding chat at that Point.
|
* Saves the Messages in the corresponding chat at that Point.
|
||||||
*
|
*
|
||||||
* @param recipient the user who receives the messages
|
* @param recipient the user who receives the messages
|
||||||
|
@ -11,8 +11,8 @@ import envoy.data.LoginCredentials;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Implements a configuration specific to the Envoy Client with default values
|
* Implements a configuration specific to the Envoy Client with default values
|
||||||
* and convenience methods.<br>
|
* and convenience methods.
|
||||||
* <br>
|
* <p>
|
||||||
* Project: <strong>envoy-client</strong><br>
|
* Project: <strong>envoy-client</strong><br>
|
||||||
* File: <strong>ClientConfig.java</strong><br>
|
* File: <strong>ClientConfig.java</strong><br>
|
||||||
* Created: <strong>01.03.2020</strong><br>
|
* Created: <strong>01.03.2020</strong><br>
|
||||||
|
@ -9,8 +9,8 @@ import envoy.event.NameChange;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Stores information about the current {@link User} and their {@link Chat}s.
|
* Stores information about the current {@link User} and their {@link Chat}s.
|
||||||
* For message ID generation a {@link IDGenerator} is stored as well.<br>
|
* For message ID generation a {@link IDGenerator} is stored as well.
|
||||||
* <br>
|
* <p>
|
||||||
* Project: <strong>envoy-client</strong><br>
|
* Project: <strong>envoy-client</strong><br>
|
||||||
* File: <strong>LocalDB.java</strong><br>
|
* File: <strong>LocalDB.java</strong><br>
|
||||||
* Created: <strong>3 Feb 2020</strong><br>
|
* Created: <strong>3 Feb 2020</strong><br>
|
||||||
|
@ -11,8 +11,8 @@ import envoy.util.SerializationUtils;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Implements a {@link LocalDB} in a way that stores all information inside a
|
* Implements a {@link LocalDB} in a way that stores all information inside a
|
||||||
* folder on the local file system.<br>
|
* folder on the local file system.
|
||||||
* <br>
|
* <p>
|
||||||
* Project: <strong>envoy-client</strong><br>
|
* Project: <strong>envoy-client</strong><br>
|
||||||
* File: <strong>PersistentLocalDB.java</strong><br>
|
* File: <strong>PersistentLocalDB.java</strong><br>
|
||||||
* Created: <strong>27.10.2019</strong><br>
|
* Created: <strong>27.10.2019</strong><br>
|
||||||
|
@ -11,8 +11,8 @@ import envoy.util.SerializationUtils;
|
|||||||
/**
|
/**
|
||||||
* Manages all application settings, which are different objects that can be
|
* Manages all application settings, which are different objects that can be
|
||||||
* changed during runtime and serialized them by using either the file system or
|
* changed during runtime and serialized them by using either the file system or
|
||||||
* the {@link Preferences} API.<br>
|
* the {@link Preferences} API.
|
||||||
* <br>
|
* <p>
|
||||||
* Project: <strong>envoy-client</strong><br>
|
* Project: <strong>envoy-client</strong><br>
|
||||||
* File: <strong>Settings.java</strong><br>
|
* File: <strong>Settings.java</strong><br>
|
||||||
* Created: <strong>11 Nov 2019</strong><br>
|
* Created: <strong>11 Nov 2019</strong><br>
|
||||||
|
@ -7,8 +7,8 @@ import javax.swing.JComponent;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Encapsulates a persistent value that is directly or indirectly mutable by the
|
* Encapsulates a persistent value that is directly or indirectly mutable by the
|
||||||
* user.<br>
|
* user.
|
||||||
* <br>
|
* <p>
|
||||||
* Project: <strong>envoy-client</strong><br>
|
* Project: <strong>envoy-client</strong><br>
|
||||||
* File: <strong>SettingsItem.java</strong><br>
|
* File: <strong>SettingsItem.java</strong><br>
|
||||||
* Created: <strong>23.12.2019</strong><br>
|
* Created: <strong>23.12.2019</strong><br>
|
||||||
|
@ -2,8 +2,8 @@ package envoy.client.data;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Implements a {@link LocalDB} in a way that does not persist any information
|
* Implements a {@link LocalDB} in a way that does not persist any information
|
||||||
* after application shutdown.<br>
|
* after application shutdown.
|
||||||
* <br>
|
* <p>
|
||||||
* Project: <strong>envoy-client</strong><br>
|
* Project: <strong>envoy-client</strong><br>
|
||||||
* File: <strong>TransientLocalDB.java</strong><br>
|
* File: <strong>TransientLocalDB.java</strong><br>
|
||||||
* Created: <strong>3 Feb 2020</strong><br>
|
* Created: <strong>3 Feb 2020</strong><br>
|
||||||
|
@ -8,7 +8,6 @@ import envoy.event.Event;
|
|||||||
* Created: <strong>11.02.2020</strong><br>
|
* Created: <strong>11.02.2020</strong><br>
|
||||||
*
|
*
|
||||||
* @author: Maximilian Käfer
|
* @author: Maximilian Käfer
|
||||||
*
|
|
||||||
* @since Envoy Client v0.3-alpha
|
* @since Envoy Client v0.3-alpha
|
||||||
*/
|
*/
|
||||||
public class SendEvent extends Event<Event<?>> {
|
public class SendEvent extends Event<Event<?>> {
|
||||||
|
@ -20,8 +20,8 @@ import envoy.util.SerializationUtils;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Establishes a connection to the server, performs a handshake and delivers
|
* Establishes a connection to the server, performs a handshake and delivers
|
||||||
* certain objects to the server.<br>
|
* certain objects to the server.
|
||||||
* <br>
|
* <p>
|
||||||
* Project: <strong>envoy-client</strong><br>
|
* Project: <strong>envoy-client</strong><br>
|
||||||
* File: <strong>Client.java</strong><br>
|
* File: <strong>Client.java</strong><br>
|
||||||
* Created: <strong>28 Sep 2019</strong><br>
|
* Created: <strong>28 Sep 2019</strong><br>
|
||||||
|
@ -12,8 +12,8 @@ import envoy.util.EnvoyLog;
|
|||||||
/**
|
/**
|
||||||
* Implements methods to send {@link Message}s and
|
* Implements methods to send {@link Message}s and
|
||||||
* {@link MessageStatusChange}s to the server or cache them inside a
|
* {@link MessageStatusChange}s to the server or cache them inside a
|
||||||
* {@link LocalDB} depending on the online status.<br>
|
* {@link LocalDB} depending on the online status.
|
||||||
* <br>
|
* <p>
|
||||||
* Project: <strong>envoy-client</strong><br>
|
* Project: <strong>envoy-client</strong><br>
|
||||||
* File: <strong>WriteProxy.java</strong><br>
|
* File: <strong>WriteProxy.java</strong><br>
|
||||||
* Created: <strong>6 Feb 2020</strong><br>
|
* Created: <strong>6 Feb 2020</strong><br>
|
||||||
|
@ -8,11 +8,11 @@ import javafx.scene.image.Image;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Provides static utility methods for loading icons from the resource
|
* Provides static utility methods for loading icons from the resource
|
||||||
* folder.<br>
|
* folder.
|
||||||
* <br>
|
* <p>
|
||||||
* Project: <strong>envoy-client</strong>
|
* Project: <strong>envoy-client</strong><br>
|
||||||
* File: <strong>IconUtil.java</strong>
|
* File: <strong>IconUtil.java</strong><br>
|
||||||
* Created: <strong>16.03.2020</strong>
|
* Created: <strong>16.03.2020</strong><br>
|
||||||
*
|
*
|
||||||
* @author Kai S. K. Engelbart
|
* @author Kai S. K. Engelbart
|
||||||
* @since Envoy Client v0.1-beta
|
* @since Envoy Client v0.1-beta
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/**
|
/**
|
||||||
* This package contains classes used for representing the settings
|
* This package contains classes used for representing the settings
|
||||||
* visually.<br>
|
* visually.
|
||||||
* <br>
|
* <p>
|
||||||
* Project: <strong>envoy-client</strong><br>
|
* Project: <strong>envoy-client</strong><br>
|
||||||
* File: <strong>package-info.java</strong><br>
|
* File: <strong>package-info.java</strong><br>
|
||||||
* Created: <strong>19 Apr 2020</strong><br>
|
* Created: <strong>19 Apr 2020</strong><br>
|
||||||
|
Reference in New Issue
Block a user