From 787e7cf9415df6a58eeb9a2fc3491ef21b3134c3 Mon Sep 17 00:00:00 2001
From: Steve Loughran refid
.
+Any Ant type which has been declared with a reference can also its string
+value extracted by using the ${toString:}
operation,
+with the name of the reference listed after the toString:
text.
+The toString()
method of the Java class instance that is
+referenced is invoked -all built in types strive to produce useful and relevant
+output in such an instance.
+
+For example, here is how to get a listing of the files in a fileset, +
+
+<fileset id="sourcefiles" dir="src" includes="**/*.java" /> +<echo> sourcefiles = ${toString:sourcefiles} </echo> ++
+There is no guarantee that external types provide meaningful information in such +a situation
+ +