//------------------------
// Setup the command
//------------------------
TagCommand command = new TagCommand();
command.setBuilder(null);
command.setRecursive(true);
command.setTag(aTagName);
if (aFiles != null)
{
logger.info("SETTING FILES: ");
for (int i = 0; i < aFiles.length; i ++)
{
logger.info("- " + aFiles[i].getAbsolutePath());
}
command.setFiles(aFiles);
}
logger.info("CVS COMMAND: " + command.getCVSCommand());
//------------------------
// Execute the command
//------------------------