Commented composite example.

This commit is contained in:
Ilkka Seppala
2014-08-31 09:03:10 +03:00
parent e71fba03a8
commit e760858bb6
2 changed files with 12 additions and 2 deletions
@@ -3,6 +3,11 @@ package com.iluwatar;
import java.util.ArrayList;
import java.util.List;
/**
*
* Composite interface.
*
*/
public abstract class LetterComposite {
private List<LetterComposite> children = new ArrayList<LetterComposite>();