Returns an array containing the target filename(s) for the given source
file.
if the given rule doesn't apply to the source file, implementation
must return null. SourceFileScanner will then omit the source file in
question.
initScriptRunner();
getRunner().addBean("source", sourceFileName);
clear();
executeScript("ant_mapper");
if (files.size() == 0) {
return null;
} else {
return (String[]) files.toArray(EMPTY_STRING_ARRAY);
}