Added source code comments.

This commit is contained in:
Ilkka Seppala
2015-05-25 19:13:50 +03:00
parent fdf1d148fa
commit 0c0d84c220
10 changed files with 71 additions and 0 deletions

View File

@@ -1,5 +1,11 @@
package com.iluwatar;
/**
*
* Naive Wizard implementation violating the inversion of control principle.
* It should depend on abstraction instead.
*
*/
public class SimpleWizard implements Wizard {
private OldTobyTobacco tobacco = new OldTobyTobacco();