1
0
Fork 0

general - correct authors

This commit is contained in:
rxbn_ 2019-12-08 00:15:20 +01:00
parent 131dedb22e
commit e782ad2017
7 changed files with 7 additions and 12 deletions

View File

@ -14,7 +14,7 @@ import break_out.view.View;
* The controller takes care of the input events and reacts on those events by * The controller takes care of the input events and reacts on those events by
* manipulating the view and updates the model. * manipulating the view and updates the model.
* *
* @author dmlux, modified by I. Schumacher and I. Traupe, modified by Gruppe 175 * @author dmlux, modified by I. Schumacher and I. Traupe, modified by Gruppe 175 (Moritz Henseleit, Ruben Meyer)
*/ */
public class Controller implements ActionListener, KeyListener { public class Controller implements ActionListener, KeyListener {

View File

@ -5,8 +5,7 @@ import break_out.Constants;
/** /**
* This class contains the information about the balls characteristics and behavior * This class contains the information about the balls characteristics and behavior
* *
* @author iSchumacher * @author iSchumacher; modified by Gruppe 175 (Moritz Henseleit, Ruben Meyer)
* @author modified by Gruppe 175: Moritz Henseleit, Ruben Meyer
*/ */
public class Ball implements IBall { public class Ball implements IBall {

View File

@ -9,7 +9,7 @@ import break_out.view.View;
/** /**
* This class contains information about the game (the model in MVC) * This class contains information about the game (the model in MVC)
* *
* @author dmlux, modified by I. Schumacher, modified by Gruppe 175 * @author dmlux, modified by I. Schumacher, modified by Gruppe 175 (Moritz Henseleit, Ruben Meyer)
*/ */
public class Game { public class Game {

View File

@ -7,8 +7,7 @@ import break_out.Constants;
* This class contains information about the running game * This class contains information about the running game
* *
* @author dmlux * @author dmlux
* @author I. Schumacher * @author I. Schumacher; modified by Gruppe 175 (Moritz Henseleit, Ruben Meyer)
* @author modified by Gruppe 175: Moritz Henseleit, Ruben Meyer
*/ */
public class Level extends Thread implements ILevel { public class Level extends Thread implements ILevel {

View File

@ -6,8 +6,7 @@ import break_out.model.Position;
/** /**
* This class represent a two dimensional vector. * This class represent a two dimensional vector.
* *
* @author I. Schumacher * @author I. Schumacher; modified by Gruppe 175 (Moritz Henseleit, Ruben Meyer)
* @author modified by Gruppe 175: Moritz Henseleit, Ruben Meyer
*/ */
public class Vector2D implements IVector2D { public class Vector2D implements IVector2D {

View File

@ -14,8 +14,7 @@ import net.miginfocom.swing.MigLayout;
/** /**
* The field represents the board of the game. All components are on the board * The field represents the board of the game. All components are on the board
* *
* @author dmlux, modified by iSchumacher * @author dmlux, modified by iSchumacher, modified by Gruppe 175 (Moritz Henseleit, Ruben Meyer)
* @author modified by Gruppe 175: Moritz Henseleit, Ruben Meyer
*/ */
public class Field extends JPanel { public class Field extends JPanel {

View File

@ -11,8 +11,7 @@ import break_out.model.Game;
* The view class manages the depiction of the components inside the JFrames. It * The view class manages the depiction of the components inside the JFrames. It
* gets the components from the game which is connected to this class * gets the components from the game which is connected to this class
* *
* @author dmlux * @author dmlux, modified by Gruppe 175 (Moritz Henseleit, Ruben Meyer)
* @author modified by Gruppe 175: Moritz Henseleit, Ruben Meyer
*/ */
public class View extends JFrame { public class View extends JFrame {