Mercurial > hg4j
comparison build.xml @ 9:d6d2a630f4a6
Access to underlaying file data wrapped into own Access object, implemented with FileChannel and ByteBuffer
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Sat, 25 Dec 2010 04:45:59 +0100 |
parents | 286d221f6c28 |
children | 993f6f8e1314 |
comparison
equal
deleted
inserted
replaced
8:a78c980749e3 | 9:d6d2a630f4a6 |
---|---|
4 description | 4 description |
5 </description> | 5 </description> |
6 | 6 |
7 <target name="samples" depends="build"> | 7 <target name="samples" depends="build"> |
8 | 8 |
9 <echo message="History of a specific file"/> | 9 <echo message="History of a specific file(s)"/> |
10 <java classpath="hgkit.jar" classname="com.tmate.hgkit.console.Log"> | 10 <java classpath="hgkit.jar" classname="com.tmate.hgkit.console.Log"> |
11 <arg line="design.txt"/> | 11 <arg line="design.txt .classpath src/com/tmate/hgkit/ll/LocalHgRepo.java"/> |
12 </java> | 12 </java> |
13 | 13 |
14 <echo message="Whole repo log"/> | 14 <echo message="Whole repo log"/> |
15 <java classpath="hgkit.jar" classname="com.tmate.hgkit.console.Log"/> | 15 <java classpath="hgkit.jar" classname="com.tmate.hgkit.console.Log"/> |
16 | 16 |
17 <echo message="Content of a file"/> | 17 <echo message="Content of a file"/> |
18 <java classpath="hgkit.jar" classname="com.tmate.hgkit.console.Cat"> | 18 <java classpath="hgkit.jar" classname="com.tmate.hgkit.console.Cat"> |
19 <arg line="design.txt"/> | 19 <arg line="src/com/tmate/hgkit/ll/Revlog.java"/> |
20 </java> | 20 </java> |
21 | 21 |
22 </target> | 22 </target> |
23 | 23 |
24 <target name="build"> | 24 <target name="build"> |