Added code comments.

This commit is contained in:
Ilkka Seppala
2015-04-15 22:29:04 +03:00
parent 27ff01de1b
commit 8062092291
16 changed files with 132 additions and 2 deletions

View File

@@ -7,6 +7,11 @@ import com.iluwatar.spellbook.Spellbook;
import com.iluwatar.wizard.Wizard;
/**
*
* Service interface.
*
*/
public interface MagicService {
List<Wizard> findAllWizards();
@@ -14,5 +19,8 @@ public interface MagicService {
List<Spellbook> findAllSpellbooks();
List<Spell> findAllSpells();
List<Wizard> findWizardsWithSpellbook(String name);
List<Wizard> findWizardsWithSpell(String name);
}