Browse Source

generate Javadoc

master
Markus Bauer 5 years ago
parent
commit
e3f19a0439

+ 3
- 2
src/kontakte/controller/CommandInterface.java View File

package kontakte.controller; package kontakte.controller;


/** /**
*
* @author nobody
* Das Interface für Kommandos, die mit dem Model interagieren.
*
* @see kontakte.model.Model
*/ */
public interface CommandInterface public interface CommandInterface
{ {

+ 3
- 2
src/kontakte/controller/CommandInvoker.java View File

import java.util.Stack; import java.util.Stack;


/** /**
*
* @author nobody
* Diese Klasse verknüpft Eventquellen mit ihren entsprechenden Kommandos.
*
* @see CommandInterface
*/ */
public class CommandInvoker public class CommandInvoker
{ {

+ 4
- 2
src/kontakte/controller/Controller.java View File

import kontakte.view.View; 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 public class Controller implements ActionListener
{ {

+ 3
- 2
src/kontakte/model/Model.java View File

import java.util.HashMap; import java.util.HashMap;


/** /**
*
* @author nobody
* Die Datenschicht der Anwendung. Es wird eine HasMap mit Kontakten verwaltet.
*
* @see Kontakt
*/ */
public class Model public class Model
{ {

Loading…
Cancel
Save