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
|
||||
//
|
||||
|
||||
private unsigned int level;
|
||||
private int level;
|
||||
/**
|
||||
* arraylist von Spieler
|
||||
*/
|
||||
@@ -36,7 +36,7 @@ public class Spielerverwaltung {
|
||||
* Set the value of level
|
||||
* @param newVar the new value of level
|
||||
*/
|
||||
public void setLevel (unsigned int newVar) {
|
||||
public void setLevel (int newVar) {
|
||||
level = newVar;
|
||||
}
|
||||
|
||||
@@ -44,7 +44,7 @@ public class Spielerverwaltung {
|
||||
* Get the value of level
|
||||
* @return the value of level
|
||||
*/
|
||||
public unsigned int getLevel () {
|
||||
public int getLevel () {
|
||||
return level;
|
||||
}
|
||||
|
||||
|
@@ -25,7 +25,7 @@ import java.net.URL;
|
||||
import java.awt.Component;
|
||||
import java.awt.Font;
|
||||
|
||||
public class JauJauGUI {
|
||||
public class Menue_GUI {
|
||||
|
||||
private JFrame frame;
|
||||
|
||||
@@ -36,7 +36,7 @@ public class JauJauGUI {
|
||||
EventQueue.invokeLater(new Runnable() {
|
||||
public void run() {
|
||||
try {
|
||||
JauJauGUI window = new JauJauGUI();
|
||||
Menue_GUI window = new Menue_GUI();
|
||||
window.frame.setVisible(true);
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
@@ -48,7 +48,7 @@ public class JauJauGUI {
|
||||
/**
|
||||
* Create the application.
|
||||
*/
|
||||
public JauJauGUI() {
|
||||
public Menue_GUI() {
|
||||
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