2015-06-15 17:47:35 -07:00
|
|
|
<?xml version="1.0" ?>
|
|
|
|
|
|
|
|
<project default="run">
|
|
|
|
<property name="chapter" value="patterns"/>
|
|
|
|
<property name="excludedfiles" value=""/>
|
|
|
|
<import file="../Ant-Common.xml"/>
|
|
|
|
<import file="../Ant-Clean.xml"/>
|
|
|
|
|
|
|
|
<target name="run" description="Compile and run" depends="build">
|
|
|
|
<jrun cls="CommandPattern" />
|
|
|
|
<jrun cls="Facade" />
|
|
|
|
<jrun cls="PaperScissorsRock" />
|
|
|
|
<jrun cls="ProxyDemo" />
|
|
|
|
<jrun cls="ShapeFactory2" />
|
|
|
|
<jrun cls="SingletonPattern" />
|
|
|
|
<jrun cls="StateDemo" />
|
|
|
|
<jrun cls="TemplateMethod" />
|
|
|
|
<jrun cls="patterns.absfactory.GameEnvironment" dirpath="../patterns/absfactory" />
|
|
|
|
<jrun cls="patterns.adapt.Adapter" dirpath="../patterns/adapt" />
|
|
|
|
<jrun cls="patterns.chain.ChainOfResponsibility" dirpath="../patterns/chain" />
|
|
|
|
<jrun cls="patterns.doubledispatch.DoubleDispatch" dirpath="../patterns/doubledispatch" />
|
|
|
|
<jrun cls="patterns.dynatrash.DynaTrash" dirpath="../patterns/dynatrash" />
|
|
|
|
<jrun cls="patterns.factory.ShapeFactory1" dirpath="../patterns/factory" />
|
|
|
|
<jrun cls="patterns.observer.ObservedFlower" dirpath="../patterns/observer" />
|
|
|
|
<jrun cls="patterns.recyclea.RecycleA" dirpath="../patterns/recyclea" />
|
|
|
|
<jrun cls="patterns.recycleb.RecycleB" dirpath="../patterns/recycleb" />
|
2015-11-03 12:00:44 -08:00
|
|
|
<jrun cls="patterns.recyclec.RecycleC" dirpath="../patterns/recyclec" />
|
2015-06-15 17:47:35 -07:00
|
|
|
<jrun cls="patterns.state.StateMachineDemo" dirpath="../patterns/state" />
|
|
|
|
<jrun cls="patterns.strategy.StrategyPattern" dirpath="../patterns/strategy" />
|
|
|
|
<jrun cls="patterns.strategy.StrategyPattern2" dirpath="../patterns/strategy" />
|
2015-11-03 12:00:44 -08:00
|
|
|
<jrun cls="patterns.trash.ParseTrash" dirpath="../patterns/trash" />
|
2015-06-15 17:47:35 -07:00
|
|
|
<jrun cls="patterns.trashvisitor.TrashVisitor" dirpath="../patterns/trashvisitor" />
|
|
|
|
<jrun cls="patterns.visitor.BeeAndFlowers" dirpath="../patterns/visitor" />
|
|
|
|
<jrun cls="patterns.visualobserver.BoxObserver" dirpath="../patterns/visualobserver" failOnError='false' timeOut='4000' />
|
|
|
|
</target>
|
|
|
|
|
|
|
|
</project>
|