Changed the version number

This commit is contained in:
2018-02-22 14:12:42 +01:00
parent 45e2c81d05
commit 184939d3f1
11 changed files with 29 additions and 26 deletions

View File

@ -18,8 +18,8 @@ import static javax.swing.text.DefaultCaret.ALWAYS_UPDATE;
* Has a box for user input, and a textArea for server output.
*
* @author Kristian Knarvik <kristian.knarvik@knett.no>
* @version 0.0.0.1
* @since 0.0.0.1
* @version 1.0.0
* @since 1.0.0
*/
public class Console implements ActionListener, KeyListener {
private final JTextField textInput;

View File

@ -22,9 +22,9 @@ import static javax.swing.WindowConstants.DO_NOTHING_ON_CLOSE;
/**
* Generates a GUI.
*
* @author Kristian Knarvik <kristian.knarvik@knett.no>
* @version 0.0.0.1
* @since 0.0.0.1
* @author Kristian Knarvik <kristian.knarvik@knett.no>
* @version 1.0.0
* @since 1.0.0
*/
public class GUI implements ActionListener {

View File

@ -10,8 +10,8 @@ import java.awt.BorderLayout;
* Keeps track of all consoles.
*
* @author Kristian Knarvik <kristian.knarvik@knett.no>
* @version 0.0.0.1
* @since 0.0.0.1
* @version 1.0.0
* @since 1.0.0
*/
public class ServerConsoles {
private static JFrame frame;

View File

@ -13,8 +13,8 @@ import java.awt.event.ActionListener;
* Does some visual stuff by itself, but otherwise reads user inputs.
*
* @author Kristian Knarvik <kristian.knarvik@knett.no>
* @version 0.0.0.1
* @since 0.0.0.1
* @version 1.0.0
* @since 1.0.0
*/
public class ServerTab implements ActionListener {
private final JComboBox<String> serverTypes, serverVersions, maxRam;