I am trying to create a list of all sitemap components in the Cocoon core and blocks.
So far i have tried to use 'find and grep' by looking for well-known filenames, e.g. *Transformer.java and also searching in well-known directories, e.g. /transformation/ However, that misses some components and gets too much extra stuff.
Using the "package" name inside the *.java also misses some components.
Is there a way to uniquely identify the sitemap components by grepping the *.java e.g. perhaps a unique method name?
--David