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 {