From ef887e6003a46a7cd8cbfb8479969cf0cf91aabb Mon Sep 17 00:00:00 2001 From: Ilkka Seppala Date: Wed, 19 Aug 2015 22:15:49 +0300 Subject: [PATCH] #107 Improve JavaDoc for Model-View-Controller example --- .../java/com/iluwatar/model/view/controller/App.java | 12 ++++++++---- .../com/iluwatar/model/view/controller/AppTest.java | 5 +++++ 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/model-view-controller/src/main/java/com/iluwatar/model/view/controller/App.java b/model-view-controller/src/main/java/com/iluwatar/model/view/controller/App.java index e3d61302e..0ba34b5d4 100644 --- a/model-view-controller/src/main/java/com/iluwatar/model/view/controller/App.java +++ b/model-view-controller/src/main/java/com/iluwatar/model/view/controller/App.java @@ -4,19 +4,23 @@ package com.iluwatar.model.view.controller; * * Model-View-Controller is a pattern for implementing user interfaces. It divides the application * into three interconnected parts namely the model, the view and the controller. - * + *

* The central component of MVC, the model, captures the behavior of the application in terms of its problem * domain, independent of the user interface. The model directly manages the data, logic and rules of the * application. A view can be any output representation of information, such as a chart or a diagram * The third part, the controller, accepts input and converts it to commands for the model or view. - * - * In this example we have a giant (GiantModel) with statuses for health, fatigue and nourishment. GiantView - * can display the giant with its current status. GiantController receives input affecting the model and + *

+ * In this example we have a giant ({@link GiantModel}) with statuses for health, fatigue and nourishment. {@link GiantView} + * can display the giant with its current status. {@link GiantController} receives input affecting the model and * delegates redrawing the giant to the view. * */ public class App { + /** + * Program entry point + * @param args command line args + */ public static void main( String[] args ) { // create model, view and controller GiantModel giant = new GiantModel(Health.HEALTHY, Fatigue.ALERT, Nourishment.SATURATED); diff --git a/model-view-controller/src/test/java/com/iluwatar/model/view/controller/AppTest.java b/model-view-controller/src/test/java/com/iluwatar/model/view/controller/AppTest.java index b6e2f1bff..4bb31f6e6 100644 --- a/model-view-controller/src/test/java/com/iluwatar/model/view/controller/AppTest.java +++ b/model-view-controller/src/test/java/com/iluwatar/model/view/controller/AppTest.java @@ -4,6 +4,11 @@ import org.junit.Test; import com.iluwatar.model.view.controller.App; +/** + * + * Application test + * + */ public class AppTest { @Test