From 40e378c1f3ed1407a4918c1d7bd5ff1e09730adc Mon Sep 17 00:00:00 2001 From: Ilkka Seppala Date: Sat, 3 Oct 2015 23:57:17 +0300 Subject: [PATCH] Improve Property Javadoc --- property/src/main/java/com/iluwatar/property/App.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/property/src/main/java/com/iluwatar/property/App.java b/property/src/main/java/com/iluwatar/property/App.java index 54c140574..ac46f5448 100644 --- a/property/src/main/java/com/iluwatar/property/App.java +++ b/property/src/main/java/com/iluwatar/property/App.java @@ -4,12 +4,14 @@ import com.iluwatar.property.Character.Type; /** * - * Example of {@link Character} instantiation using the Property pattern (also known as Prototype inheritance). + * The Property pattern is also known as Prototype inheritance. *

* In prototype inheritance instead of classes, as opposite to Java class inheritance, * objects are used to create another objects and object hierarchies. Hierarchies are created using prototype chain * through delegation: every object has link to parent object. Any base (parent) object can be amended at runtime * (by adding or removal of some property), and all child objects will be affected as result. + *

+ * In this example we demonstrate {@link Character} instantiation using the Property pattern. * */ public class App { -- GitLab