generate Javadoc

This commit is contained in:
Markus Bauer 2018-11-14 12:15:43 +01:00
parent fb1460a3d7
commit e3f19a0439
4 changed files with 13 additions and 8 deletions

View File

@ -7,8 +7,9 @@
package kontakte.controller; package kontakte.controller;
/** /**
* Das Interface für Kommandos, die mit dem Model interagieren.
* *
* @author nobody * @see kontakte.model.Model
*/ */
public interface CommandInterface public interface CommandInterface
{ {

View File

@ -11,8 +11,9 @@ import java.util.HashMap;
import java.util.Stack; import java.util.Stack;
/** /**
* Diese Klasse verknüpft Eventquellen mit ihren entsprechenden Kommandos.
* *
* @author nobody * @see CommandInterface
*/ */
public class CommandInvoker public class CommandInvoker
{ {

View File

@ -13,8 +13,10 @@ import kontakte.model.Model;
import kontakte.view.View; import kontakte.view.View;
/** /**
* Diese Klasse leitet Events von der View an den CommandInvoker weiter.
* *
* @author nobody * @see View
* @see CommandInvoker
*/ */
public class Controller implements ActionListener public class Controller implements ActionListener
{ {

View File

@ -9,8 +9,9 @@ package kontakte.model;
import java.util.HashMap; import java.util.HashMap;
/** /**
* Die Datenschicht der Anwendung. Es wird eine HasMap mit Kontakten verwaltet.
* *
* @author nobody * @see Kontakt
*/ */
public class Model public class Model
{ {