27 lines
825 B
XML
27 lines
825 B
XML
|
<?xml version="1.0" ?>
|
||
|
|
||
|
<project default="run">
|
||
|
<property name="chapter" value="newio"/>
|
||
|
<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="AvailableCharSets" />
|
||
|
<jrun cls="BufferToText" />
|
||
|
<jrun cls="ChannelCopy" arguments="ChannelCopy.java test.txt" />
|
||
|
<jrun cls="Endians" />
|
||
|
<jrun cls="FileLocking" />
|
||
|
<jrun cls="GetChannel" />
|
||
|
<jrun cls="GetData" />
|
||
|
<jrun cls="IntBufferDemo" />
|
||
|
<jrun cls="LargeMappedFiles" />
|
||
|
<jrun cls="LockingMappedFiles" />
|
||
|
<jrun cls="MappedIO" />
|
||
|
<jrun cls="TransferTo" arguments="TransferTo.java TransferTo.txt" />
|
||
|
<jrun cls="UsingBuffers" />
|
||
|
<jrun cls="ViewBuffers" />
|
||
|
</target>
|
||
|
|
||
|
</project>
|