Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 342 Bytes

File metadata and controls

17 lines (11 loc) · 342 Bytes

How to use

The .java files are the code and the .class file are the compiled code.

To compile from the project root:

javac -d out CompositeIteratorPattern/*.java

To run:

java -cp out CompositeIteratorPattern.MenuTestDrive

There is a better way of using the decorator pattern with Factory and Builder patterns.