From 01bdcdc1ed662dacdceca61e7ee46ce5923297ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ilkka=20Sepp=C3=A4l=C3=A4?= Date: Sun, 10 Aug 2014 22:57:44 +0300 Subject: [PATCH] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 0830878bc..3b19bd6bf 100644 --- a/README.md +++ b/README.md @@ -12,3 +12,6 @@ Intent: Separate the construction of a complex object from its representation so ##Factory Method Intent: Define an interface for creating an object, but let subclasses decide which class to instantiate. Factory Method lets a class defer instantiation to subclasses. + +##Prototype +Intent: Specify the kinds of objects to create using a prototypical instance, and create new objects by copying this prototype.