* @throws BuildException
*/
private void generateActionDeclarations() throws BuildException {
List files = getFiles(sourceroots.list(), ".java");
ActionHandlerCreator ahc = new ActionHandlerCreator(files);
try {
ahc.emitAspect(scratchdir);
}
catch (IOException ioe) {
throw new BuildException(ioe);
}
}