Updated malformed Javadoc
This commit is contained in:
parent
fdeb922bdd
commit
549fc3de7a
@ -35,7 +35,7 @@ public class Client {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Initializes the client. At this state, the client user has yet to be
|
* Initializes the client. At this state, the client user has yet to be
|
||||||
* initialized, which can be done by calling {@link Client#onlineInit(String).
|
* initialized, which can be done by calling {@link Client#onlineInit(String)}.
|
||||||
*
|
*
|
||||||
* @param config The {@link Config} instance to use in this client
|
* @param config The {@link Config} instance to use in this client
|
||||||
* @since Envoy v0.2-alpha
|
* @since Envoy v0.2-alpha
|
||||||
|
@ -52,9 +52,10 @@ public class LocalDB {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs an empty local database. To serialize any chats to the file
|
* Constructs an empty local database. To serialize any chats to the file
|
||||||
* system, call {@link LocalDB#initializeDBFile(File)}.
|
* system, call {@link LocalDB#initializeDBFile()}.
|
||||||
*
|
*
|
||||||
* @param localDBDir the directory in which to store users and chats
|
* @param localDBDir the directory in which to store users and chats
|
||||||
|
* @throws IOException if the LocalDB could not be initialised
|
||||||
* @since Envoy v0.1-alpha
|
* @since Envoy v0.1-alpha
|
||||||
*/
|
*/
|
||||||
public LocalDB(File localDBDir) throws IOException {
|
public LocalDB(File localDBDir) throws IOException {
|
||||||
|
@ -88,7 +88,7 @@ public class Settings {
|
|||||||
/**
|
/**
|
||||||
* Updates the preferences when the save button is clicked.
|
* Updates the preferences when the save button is clicked.
|
||||||
*
|
*
|
||||||
* @throws IOException
|
* @throws IOException if something went wrong while saving
|
||||||
* @since Envoy v0.2-alpha
|
* @since Envoy v0.2-alpha
|
||||||
*/
|
*/
|
||||||
public void save() throws IOException {
|
public void save() throws IOException {
|
||||||
@ -105,7 +105,7 @@ public class Settings {
|
|||||||
/**
|
/**
|
||||||
* adds new theme to the theme map and sets current theme to the new theme.
|
* adds new theme to the theme map and sets current theme to the new theme.
|
||||||
*
|
*
|
||||||
* @param theme
|
* @param theme the theme to add
|
||||||
* @since Envoy v0.2-alpha
|
* @since Envoy v0.2-alpha
|
||||||
*/
|
*/
|
||||||
public void addNewThemeToMap(Theme theme) {
|
public void addNewThemeToMap(Theme theme) {
|
||||||
@ -114,7 +114,7 @@ public class Settings {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return {@link currentTheme}
|
* @return the name of the current Theme
|
||||||
* @since Envoy v0.2-alpha
|
* @since Envoy v0.2-alpha
|
||||||
*/
|
*/
|
||||||
public String getCurrentTheme() { return currentTheme; }
|
public String getCurrentTheme() { return currentTheme; }
|
||||||
@ -122,7 +122,7 @@ public class Settings {
|
|||||||
/**
|
/**
|
||||||
* Sets the currentTheme
|
* Sets the currentTheme
|
||||||
*
|
*
|
||||||
* @param themeName
|
* @param themeName the name of the current theme
|
||||||
* @since Envoy v0.2-alpha
|
* @since Envoy v0.2-alpha
|
||||||
*/
|
*/
|
||||||
public void setCurrentTheme(String themeName) { currentTheme = themeName; }
|
public void setCurrentTheme(String themeName) { currentTheme = themeName; }
|
||||||
@ -144,15 +144,15 @@ public class Settings {
|
|||||||
public void setEnterToSend(boolean enterToSend) { this.enterToSend = enterToSend; }
|
public void setEnterToSend(boolean enterToSend) { this.enterToSend = enterToSend; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return {@link themes} map
|
* @return the map of all themes
|
||||||
* @since Envoy v0.2-alpha
|
* @since Envoy v0.2-alpha
|
||||||
*/
|
*/
|
||||||
public Map<String, Theme> getThemes() { return themes; }
|
public Map<String, Theme> getThemes() { return themes; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets {@link themes}
|
* Sets the map of all themes
|
||||||
*
|
*
|
||||||
* @param themes
|
* @param themes a map(String, Theme) of all themes
|
||||||
* @since Envoy v0.2-alpha
|
* @since Envoy v0.2-alpha
|
||||||
*/
|
*/
|
||||||
public void setThemes(Map<String, Theme> themes) { this.themes = themes; }
|
public void setThemes(Map<String, Theme> themes) { this.themes = themes; }
|
||||||
|
@ -1,17 +1,18 @@
|
|||||||
package envoy.client.event;
|
package envoy.client.event;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Project: <strong>envoy-client</strong><br>
|
* Project: <strong>envoy-client</strong><br>
|
||||||
* File: <strong>Event.java</strong><br>
|
* File: <strong>Event.java</strong><br>
|
||||||
* Created: <strong>04.12.2019</strong><br>
|
* Created: <strong>04.12.2019</strong><br>
|
||||||
*
|
*
|
||||||
* @author Kai S. K. Engelbart
|
* @author Kai S. K. Engelbart
|
||||||
* @since Envoy v0.2-alpha
|
* @param <T> the type of the Event
|
||||||
*/
|
* @since Envoy v0.2-alpha
|
||||||
public interface Event<T> {
|
*/
|
||||||
|
public interface Event<T> {
|
||||||
/**
|
|
||||||
* @return the data associated with this event
|
/**
|
||||||
*/
|
* @return the data associated with this event
|
||||||
T get();
|
*/
|
||||||
}
|
T get();
|
||||||
|
}
|
||||||
|
@ -27,7 +27,7 @@ public class PrimaryScrollPane extends JScrollPane {
|
|||||||
/**
|
/**
|
||||||
* Styles the vertical and horizontal scroll bars.
|
* Styles the vertical and horizontal scroll bars.
|
||||||
*
|
*
|
||||||
* @param theme
|
* @param theme the color set used to color the component
|
||||||
* @since Envoy v0.2-alpha
|
* @since Envoy v0.2-alpha
|
||||||
*/
|
*/
|
||||||
public void applyTheme(Theme theme) {
|
public void applyTheme(Theme theme) {
|
||||||
|
@ -1,67 +1,67 @@
|
|||||||
package envoy.client.ui;
|
package envoy.client.ui;
|
||||||
|
|
||||||
import java.awt.Font;
|
import java.awt.Font;
|
||||||
import java.awt.Graphics;
|
import java.awt.Graphics;
|
||||||
|
|
||||||
import javax.swing.JTextArea;
|
import javax.swing.JTextArea;
|
||||||
import javax.swing.border.EmptyBorder;
|
import javax.swing.border.EmptyBorder;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Project: <strong>envoy-client</strong><br>
|
* Project: <strong>envoy-client</strong><br>
|
||||||
* File: <strong>PrimaryTextArea.javaEvent.java</strong><br>
|
* File: <strong>PrimaryTextArea.javaEvent.java</strong><br>
|
||||||
* Created: <strong>07.12.2019</strong><br>
|
* Created: <strong>07.12.2019</strong><br>
|
||||||
*
|
*
|
||||||
* @author Maximilian Käfer
|
* @author Maximilian Käfer
|
||||||
* @since Envoy v0.2-alpha
|
* @since Envoy v0.2-alpha
|
||||||
*/
|
*/
|
||||||
public class PrimaryTextArea extends JTextArea {
|
public class PrimaryTextArea extends JTextArea {
|
||||||
|
|
||||||
private static final long serialVersionUID = -5829028696155434913L;
|
private static final long serialVersionUID = -5829028696155434913L;
|
||||||
private int arcSize;
|
private int arcSize;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates the text area
|
* Creates the text area
|
||||||
*
|
*
|
||||||
* @param borderSpace
|
* @param borderSpace the space between components
|
||||||
* @since Envoy 0.2-alpha
|
* @since Envoy 0.2-alpha
|
||||||
*/
|
*/
|
||||||
public PrimaryTextArea(int borderSpace) { this(6, borderSpace); }
|
public PrimaryTextArea(int borderSpace) { this(6, borderSpace); }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates the text area
|
* Creates the text area
|
||||||
*
|
*
|
||||||
* @param arcSize is the diameter of the arc at the four corners.
|
* @param arcSize is the diameter of the arc at the four corners.
|
||||||
* @param borderSpace is the insets of the border on all four sides.
|
* @param borderSpace is the insets of the border on all four sides.
|
||||||
* @since Envoy 0.2-alpha
|
* @since Envoy 0.2-alpha
|
||||||
*/
|
*/
|
||||||
public PrimaryTextArea(int arcSize, int borderSpace) {
|
public PrimaryTextArea(int arcSize, int borderSpace) {
|
||||||
super();
|
super();
|
||||||
setWrapStyleWord(true);
|
setWrapStyleWord(true);
|
||||||
setLineWrap(true);
|
setLineWrap(true);
|
||||||
setBorder(null);
|
setBorder(null);
|
||||||
setFont(new Font("Arial", Font.PLAIN, 17));
|
setFont(new Font("Arial", Font.PLAIN, 17));
|
||||||
setBorder(new EmptyBorder(borderSpace, borderSpace, borderSpace, borderSpace));
|
setBorder(new EmptyBorder(borderSpace, borderSpace, borderSpace, borderSpace));
|
||||||
setOpaque(false);
|
setOpaque(false);
|
||||||
|
|
||||||
this.arcSize = arcSize;
|
this.arcSize = arcSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void paintComponent(Graphics g) {
|
protected void paintComponent(Graphics g) {
|
||||||
g.setColor(getBackground());
|
g.setColor(getBackground());
|
||||||
g.fillRoundRect(0, 0, getWidth(), getHeight(), arcSize, arcSize);
|
g.fillRoundRect(0, 0, getWidth(), getHeight(), arcSize, arcSize);
|
||||||
super.paintComponent(g);
|
super.paintComponent(g);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return the arcSize - the diameter of the arc at the four corners.
|
* @return the arcSize - the diameter of the arc at the four corners.
|
||||||
* @since Envoy 0.2-alpha
|
* @since Envoy 0.2-alpha
|
||||||
*/
|
*/
|
||||||
public int getArcSize() { return arcSize; }
|
public int getArcSize() { return arcSize; }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param arcSize the arcSize to set
|
* @param arcSize the arcSize to set
|
||||||
* @since Envoy 0.2-alpha
|
* @since Envoy 0.2-alpha
|
||||||
*/
|
*/
|
||||||
public void setArcSize(int arcSize) { this.arcSize = arcSize; }
|
public void setArcSize(int arcSize) { this.arcSize = arcSize; }
|
||||||
}
|
}
|
||||||
|
@ -26,7 +26,6 @@ public class UserListRenderer extends JLabel implements ListCellRenderer<User> {
|
|||||||
|
|
||||||
private static final long serialVersionUID = 5164417379767181198L;
|
private static final long serialVersionUID = 5164417379767181198L;
|
||||||
|
|
||||||
@SuppressWarnings("incomplete-switch")
|
|
||||||
@Override
|
@Override
|
||||||
public Component getListCellRendererComponent(JList<? extends User> list, User value, int index, boolean isSelected, boolean cellHasFocus) {
|
public Component getListCellRendererComponent(JList<? extends User> list, User value, int index, boolean isSelected, boolean cellHasFocus) {
|
||||||
if (isSelected) {
|
if (isSelected) {
|
||||||
|
Reference in New Issue
Block a user