52 lines
2.1 KiB
XML
Raw Normal View History

2015-06-15 17:47:35 -07:00
<?xml version="1.0" ?>
<project default="run">
<property name="chapter" value="interfaces"/>
2015-12-02 09:20:27 -08:00
<property name="excludedfiles" value="AttemptToUseBasic.java"/>
2015-06-15 17:47:35 -07:00
<import file="../Ant-Common.xml"/>
<import file="../Ant-Clean.xml"/>
<target name="run" description="Compile and run" depends="build">
<jrun cls="AdaptedRandomDoubles" />
<jrun cls="Adventure" />
2015-12-02 09:20:27 -08:00
<jrun cls="AnImplementation" />
<jrun cls="Applicator" />
2015-06-15 17:47:35 -07:00
<jrun cls="Factories" />
<jrun cls="Games" />
<jrun cls="HorrorShow" />
2015-12-02 09:20:27 -08:00
<jrun cls="Implementation2" />
<jrun cls="Instantiable" />
<jrun cls="Jim" />
<jrun cls="Machine" />
<jrun cls="MultipleInheritance" />
2015-06-15 17:47:35 -07:00
<jrun cls="RandomWords" />
<jrun cls="TestRandVals" />
<jrun cls="interfaces.interfaceprocessor.FilterProcessor" dirpath="../interfaces/interfaceprocessor" />
<jrun cls="interfaces.music4.Music4" dirpath="../interfaces/music4" />
<jrun cls="interfaces.music5.Music5" dirpath="../interfaces/music5" />
<jrun cls="interfaces.nesting.NestingInterfaces" dirpath="../interfaces/nesting" />
</target>
2015-12-16 22:51:48 -08:00
<target name="runconsole" description="Compile and run" depends="build">
<jrunconsole cls="AdaptedRandomDoubles" />
<jrunconsole cls="Adventure" />
<jrunconsole cls="AnImplementation" />
<jrunconsole cls="Applicator" />
<jrunconsole cls="Factories" />
<jrunconsole cls="Games" />
<jrunconsole cls="HorrorShow" />
<jrunconsole cls="Implementation2" />
<jrunconsole cls="Instantiable" />
<jrunconsole cls="Jim" />
<jrunconsole cls="Machine" />
<jrunconsole cls="MultipleInheritance" />
<jrunconsole cls="RandomWords" />
<jrunconsole cls="TestRandVals" />
<jrunconsole cls="interfaces.interfaceprocessor.FilterProcessor" dirpath="../interfaces/interfaceprocessor" />
<jrunconsole cls="interfaces.music4.Music4" dirpath="../interfaces/music4" />
<jrunconsole cls="interfaces.music5.Music5" dirpath="../interfaces/music5" />
<jrunconsole cls="interfaces.nesting.NestingInterfaces" dirpath="../interfaces/nesting" />
</target>
</project>