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
* 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 {

View File

@ -5,8 +5,7 @@ import break_out.Constants;
/**
* This class contains the information about the balls characteristics and behavior
*
* @author iSchumacher
* @author modified by Gruppe 175: Moritz Henseleit, Ruben Meyer
* @author iSchumacher; modified by Gruppe 175 (Moritz Henseleit, Ruben Meyer)
*/
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)
*
* @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 {

View File

@ -7,8 +7,7 @@ import break_out.Constants;
* This class contains information about the running game
*
* @author dmlux
* @author I. Schumacher
* @author modified by Gruppe 175: Moritz Henseleit, Ruben Meyer
* @author I. Schumacher; modified by Gruppe 175 (Moritz Henseleit, Ruben Meyer)
*/
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.
*
* @author I. Schumacher
* @author modified by Gruppe 175: Moritz Henseleit, Ruben Meyer
* @author I. Schumacher; modified by Gruppe 175 (Moritz Henseleit, Ruben Meyer)
*/
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
*
* @author dmlux, modified by iSchumacher
* @author modified by Gruppe 175: Moritz Henseleit, Ruben Meyer
* @author dmlux, modified by iSchumacher, modified by Gruppe 175 (Moritz Henseleit, Ruben Meyer)
*/
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
* gets the components from the game which is connected to this class
*
* @author dmlux
* @author modified by Gruppe 175: Moritz Henseleit, Ruben Meyer
* @author dmlux, modified by Gruppe 175 (Moritz Henseleit, Ruben Meyer)
*/
public class View extends JFrame {