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;
/**
*
* @author nobody
* Das Interface für Kommandos, die mit dem Model interagieren.
*
* @see kontakte.model.Model
*/
public interface CommandInterface
{

View File

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

View File

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

View File

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