36 lines
862 B
XML
36 lines
862 B
XML
<?xml version="1.0" ?>
|
|
|
|
<project default="run">
|
|
<property name="chapter" value="Passing and Returning Objects"/>
|
|
<import file="../Ant-Common.xml"/>
|
|
|
|
<target
|
|
depends="build"
|
|
description="Compile and run"
|
|
name="run">
|
|
<touch file="failures"/>
|
|
<jrun cls="AddingClone" />
|
|
<jrun cls="Alias1" />
|
|
<jrun cls="Alias2" />
|
|
<jrun cls="CheckCloneable" />
|
|
<jrun cls="Cloning" />
|
|
<jrun cls="Compete" />
|
|
<jrun cls="CopyConstructor" />
|
|
<jrun cls="DeepCopy" />
|
|
<jrun cls="HorrorFlick" />
|
|
<jrun cls="Immutable1" />
|
|
<jrun cls="Immutable2" />
|
|
<jrun cls="ImmutableInteger" />
|
|
<jrun cls="ImmutableStrings" />
|
|
<jrun cls="LocalCopy" />
|
|
<jrun cls="MutableInteger" />
|
|
<jrun cls="PassReferences" />
|
|
<jrun cls="Snake" />
|
|
<jrun cls="Stringer" />
|
|
<delete file="failures"/>
|
|
</target>
|
|
|
|
</project>
|
|
|
|
|