2015-12-16 22:51:48 -08:00

80 lines
2.8 KiB
XML

<?xml version="1.0" ?>
<project default="run">
<property name="chapter" value="exceptions"/>
<property name="excludedfiles" value="TryAnything.java"/>
<import file="../Ant-Common.xml"/>
<import file="../Ant-Clean.xml"/>
<target name="run" description="Compile and run" depends="build">
<jrun cls="AlwaysFinally" />
<jrun cls="AutoCloseableDetails" />
<jrun cls="BodyException" />
<jrun cls="Cleanup" />
<jrun cls="CleanupIdiom" />
<jrun cls="CloseExceptions" />
<jrun cls="ConstructorException" />
<jrun cls="DynamicFields" />
<jrun cls="ExceptionMethods" />
<jrun cls="ExceptionSilencer" />
<jrun cls="ExtraFeatures" />
<jrun cls="FinallyWorks" />
<jrun cls="FullConstructors" />
<jrun cls="Human" />
<jrun cls="InheritingExceptions" />
<jrun cls="InputFile2" />
<jrun cls="LoggingExceptions" />
<jrun cls="LoggingExceptions2" />
<jrun cls="LostMessage" />
<jrun cls="MainException" />
<jrun cls="MessyExceptions" />
<jrun cls="MultipleReturns" />
<jrun cls="NeverCaught" failOnError='false' msg='* Exception was Expected *' />
<jrun cls="OnOffSwitch" />
<jrun cls="Rethrowing" />
<jrun cls="RethrowNew" />
<jrun cls="StormyInning" />
<jrun cls="StreamsAreAutoCloseable" />
<jrun cls="TryWithResources" />
<jrun cls="TurnOffChecking" />
<jrun cls="WhoCalled" />
<jrun cls="WithFinally" />
</target>
<target name="runconsole" description="Compile and run" depends="build">
<jrunconsole cls="AlwaysFinally" />
<jrunconsole cls="AutoCloseableDetails" />
<jrunconsole cls="BodyException" />
<jrunconsole cls="Cleanup" />
<jrunconsole cls="CleanupIdiom" />
<jrunconsole cls="CloseExceptions" />
<jrunconsole cls="ConstructorException" />
<jrunconsole cls="DynamicFields" />
<jrunconsole cls="ExceptionMethods" />
<jrunconsole cls="ExceptionSilencer" />
<jrunconsole cls="ExtraFeatures" />
<jrunconsole cls="FinallyWorks" />
<jrunconsole cls="FullConstructors" />
<jrunconsole cls="Human" />
<jrunconsole cls="InheritingExceptions" />
<jrunconsole cls="InputFile2" />
<jrunconsole cls="LoggingExceptions" />
<jrunconsole cls="LoggingExceptions2" />
<jrunconsole cls="LostMessage" />
<jrunconsole cls="MainException" />
<jrunconsole cls="MessyExceptions" />
<jrunconsole cls="MultipleReturns" />
<jrunconsole cls="NeverCaught" failOnError='false' msg='* Exception was Expected *' />
<jrunconsole cls="OnOffSwitch" />
<jrunconsole cls="Rethrowing" />
<jrunconsole cls="RethrowNew" />
<jrunconsole cls="StormyInning" />
<jrunconsole cls="StreamsAreAutoCloseable" />
<jrunconsole cls="TryWithResources" />
<jrunconsole cls="TurnOffChecking" />
<jrunconsole cls="WhoCalled" />
<jrunconsole cls="WithFinally" />
</target>
</project>