Merge branch 'patch-1' of https://gitlab.imn.htwk-leipzig.de/weicker/inb1-a-jaujau.git into patch-1
This commit is contained in:
@@ -12,7 +12,7 @@ public class Spielerverwaltung {
|
|||||||
// Fields
|
// Fields
|
||||||
//
|
//
|
||||||
|
|
||||||
private unsigned int level;
|
private int level;
|
||||||
/**
|
/**
|
||||||
* arraylist von Spieler
|
* arraylist von Spieler
|
||||||
*/
|
*/
|
||||||
@@ -36,7 +36,7 @@ public class Spielerverwaltung {
|
|||||||
* Set the value of level
|
* Set the value of level
|
||||||
* @param newVar the new value of level
|
* @param newVar the new value of level
|
||||||
*/
|
*/
|
||||||
public void setLevel (unsigned int newVar) {
|
public void setLevel (int newVar) {
|
||||||
level = newVar;
|
level = newVar;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,7 +44,7 @@ public class Spielerverwaltung {
|
|||||||
* Get the value of level
|
* Get the value of level
|
||||||
* @return the value of level
|
* @return the value of level
|
||||||
*/
|
*/
|
||||||
public unsigned int getLevel () {
|
public int getLevel () {
|
||||||
return level;
|
return level;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -25,7 +25,7 @@ import java.net.URL;
|
|||||||
import java.awt.Component;
|
import java.awt.Component;
|
||||||
import java.awt.Font;
|
import java.awt.Font;
|
||||||
|
|
||||||
public class JauJauGUI {
|
public class Menue_GUI {
|
||||||
|
|
||||||
private JFrame frame;
|
private JFrame frame;
|
||||||
|
|
||||||
@@ -36,7 +36,7 @@ public class JauJauGUI {
|
|||||||
EventQueue.invokeLater(new Runnable() {
|
EventQueue.invokeLater(new Runnable() {
|
||||||
public void run() {
|
public void run() {
|
||||||
try {
|
try {
|
||||||
JauJauGUI window = new JauJauGUI();
|
Menue_GUI window = new Menue_GUI();
|
||||||
window.frame.setVisible(true);
|
window.frame.setVisible(true);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
@@ -48,7 +48,7 @@ public class JauJauGUI {
|
|||||||
/**
|
/**
|
||||||
* Create the application.
|
* Create the application.
|
||||||
*/
|
*/
|
||||||
public JauJauGUI() {
|
public Menue_GUI() {
|
||||||
initialize();
|
initialize();
|
||||||
}
|
}
|
||||||
|
|
@@ -1,34 +0,0 @@
|
|||||||
package de.jaujau.gui;
|
|
||||||
|
|
||||||
import java.util.*;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class Men<65>_GUI
|
|
||||||
*/
|
|
||||||
public class Men<EFBFBD>_GUI {
|
|
||||||
|
|
||||||
//
|
|
||||||
// Fields
|
|
||||||
//
|
|
||||||
|
|
||||||
|
|
||||||
//
|
|
||||||
// Constructors
|
|
||||||
//
|
|
||||||
public Men<EFBFBD>_GUI () { };
|
|
||||||
|
|
||||||
//
|
|
||||||
// Methods
|
|
||||||
//
|
|
||||||
|
|
||||||
|
|
||||||
//
|
|
||||||
// Accessor methods
|
|
||||||
//
|
|
||||||
|
|
||||||
//
|
|
||||||
// Other methods
|
|
||||||
//
|
|
||||||
|
|
||||||
}
|
|
Reference in New Issue
Block a user